aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-04-24 00:22:00 +0200
committerPatrick Spek <p.spek@tyil.nl>2017-04-24 00:34:22 +0200
commit60aff52595020f378cd0d1a4d9d75894e083b9e0 (patch)
tree9d215cbf17602f44133a8fe6b3312a67859c55b1
parent4719fa27d8a3de7e75162cdcc48c682e0c6affbc (diff)
Update the test cases to check for the right value
-rw-r--r--t/getting.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/getting.t b/t/getting.t
index e4339bb..06a345a 100644
--- a/t/getting.t
+++ b/t/getting.t
@@ -4,7 +4,7 @@ use v6.c;
use Test;
use lib "lib";
-plan 6;
+plan 8;
use Config;
@@ -20,9 +20,9 @@ $config.read({
ok $config.get("a") eq "a", "Get simple key";
ok $config.get("b.c") eq "c", "Get nested key";
ok $config.get("nonexistant") === Nil, "Get nonexistant key";
-ok $config.get("nonexistant", "test") === Nil, "Get nonexistant key with default";
+ok $config.get("nonexistant", "test") === "test", "Get nonexistant key with default";
ok $config.get(["a"]) eq "a", "Get simple key by array";
ok $config.get(["b", "c"]) eq "c", "Get nested key by array";
ok $config.get(["nonexistant"]) === Nil, "Get nonexistant key by array";
-ok $config.get(["nonexistant"], "test") === Nil, "Get nonexistant key by array with default";
+ok $config.get(["nonexistant"], "test") === "test", "Get nonexistant key by array with default";