aboutsummaryrefslogtreecommitdiff
path: root/t/08-unsetting.t.t
diff options
context:
space:
mode:
Diffstat (limited to 't/08-unsetting.t.t')
-rw-r--r--t/08-unsetting.t.t7
1 files changed, 1 insertions, 6 deletions
diff --git a/t/08-unsetting.t.t b/t/08-unsetting.t.t
index 330ba5a..da76164 100644
--- a/t/08-unsetting.t.t
+++ b/t/08-unsetting.t.t
@@ -3,7 +3,7 @@
use v6.c;
use Test;
-plan 8;
+plan 4;
use Config;
@@ -16,11 +16,6 @@ $config.read: %(
),
);
-ok $config<a>:exists, "'a' exists";
-ok $config<a>:delete, "'a' gets deleted";
-nok $config<a>:exists, "'a' no longer exists";
-ok $config<c>:exists, "'c' remains untouched";
-
ok $config.has("c.d"), "'c.d' exists";
ok $config.unset("c.d"), "'c.d' gets deleted";
nok $config.has("c.d"), "'c.d' no longer exists";