aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-11-22 13:34:16 +0100
committerPatrick Spek <p.spek@tyil.nl>2017-11-22 13:34:16 +0100
commit11dcaa03fe07fb880fe9f29a7cfaec91043dad81 (patch)
tree6f0cbd13c843c06c90945d9d7535d640f963b9a2 /t
parentf6ee38f9b16030d790fcdb20676f8a78696dc6cb (diff)
Implement .keys method
Diffstat (limited to 't')
-rw-r--r--t/07-keys.t22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/07-keys.t b/t/07-keys.t
new file mode 100644
index 0000000..225c0b8
--- /dev/null
+++ b/t/07-keys.t
@@ -0,0 +1,22 @@
+#! /usr/bin/env perl6
+
+use v6;
+
+use Config::Parser::NULL;
+use Config;
+use Test;
+
+my Config $c .= new.read: %(
+ "a" => False,
+ "b" => False,
+ "c" => %(
+ "a" => False,
+ "b" => False,
+ ),
+);
+
+my @keys = < a b c.a c.b >;
+
+is $c.keys, @keys, ".keys returns a list of all keys";
+
+# vim: ft=perl6 noet