From 4719fa27d8a3de7e75162cdcc48c682e0c6affbc Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Mon, 24 Apr 2017 00:11:31 +0200 Subject: Add test descriptions --- t/getting.t | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 't/getting.t') diff --git a/t/getting.t b/t/getting.t index 9d0cc5c..e4339bb 100644 --- a/t/getting.t +++ b/t/getting.t @@ -17,10 +17,12 @@ $config.read({ } }); -ok $config.get("a") eq "a"; -ok $config.get("b.c") eq "c"; -ok $config.get("nonexistant") === Nil; +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(["a"]) eq "a"; -ok $config.get(["b", "c"]) eq "c"; -ok $config.get(["nonexistant"]) === Nil; +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"; -- cgit v1.1