aboutsummaryrefslogtreecommitdiff
path: root/t/07-keys.t
diff options
context:
space:
mode:
Diffstat (limited to 't/07-keys.t')
-rw-r--r--t/07-keys.t17
1 files changed, 8 insertions, 9 deletions
diff --git a/t/07-keys.t b/t/07-keys.t
index 2ba1762..f769dc3 100644
--- a/t/07-keys.t
+++ b/t/07-keys.t
@@ -2,20 +2,19 @@
use v6;
-use Config::Parser::NULL;
use Config;
use Test;
plan 1;
-my Config $c .= new.read: %(
- "a" => False,
- "b" => False,
- "c" => %(
- "a" => False,
- "b" => False,
- ),
-);
+my $c = Config.new.read({
+ a => False,
+ b => False,
+ c => {
+ a => False,
+ b => False,
+ },
+});
my @keys = < a b c.a c.b >;