aboutsummaryrefslogtreecommitdiff
path: root/t/having.t
diff options
context:
space:
mode:
Diffstat (limited to 't/having.t')
-rw-r--r--t/having.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/having.t b/t/having.t
new file mode 100644
index 0000000..d0ca5b3
--- /dev/null
+++ b/t/having.t
@@ -0,0 +1,21 @@
+#! /usr/bin/env perl6
+
+use v6.c;
+use Test;
+use lib "lib";
+
+plan 2;
+
+use Config;
+
+my $config = Config.new();
+
+$config.read({
+ a => "a",
+ b => {
+ c => "c"
+ }
+});
+
+ok $config.has("a");
+ok $config.has("b.c");