aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-04-23 21:24:26 +0200
committerPatrick Spek <p.spek@tyil.nl>2017-04-23 21:24:26 +0200
commit9687382b803ec0dc5a7dd55be88b53a4264215f9 (patch)
treee522d65c4555acabcc282e87e6c75a799bd3aa38 /t
Initial commit
Diffstat (limited to 't')
-rw-r--r--t/getting.t22
-rw-r--r--t/having.t21
-rw-r--r--t/setting.t14
3 files changed, 57 insertions, 0 deletions
diff --git a/t/getting.t b/t/getting.t
new file mode 100644
index 0000000..15937a7
--- /dev/null
+++ b/t/getting.t
@@ -0,0 +1,22 @@
+#! /usr/bin/env perl6
+
+use v6.c;
+use Test;
+use lib "lib";
+
+plan 3;
+
+use Config;
+
+my $config = Config.new();
+
+$config.read({
+ a => "a",
+ b => {
+ c => "c"
+ }
+});
+
+ok $config.get("a") eq "a";
+ok $config.get("b.c") eq "c";
+ok $config.get("nonexistant") === Nil;
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");
diff --git a/t/setting.t b/t/setting.t
new file mode 100644
index 0000000..3e36271
--- /dev/null
+++ b/t/setting.t
@@ -0,0 +1,14 @@
+#! /usr/bin/env perl6
+
+use v6.c;
+use Test;
+use lib "lib";
+
+plan 2;
+
+use Config;
+
+my $config = Config.new();
+
+ok $config.set("a", "test").get("a") eq "test";
+ok $config.set("b.c", "test").get("b.c") eq "test";