From c1dc65009e381ab09f15bb73529491d427d77232 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Mon, 24 Apr 2017 08:07:20 +0200 Subject: Add Travis checks --- t/read.t | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 't') diff --git a/t/read.t b/t/read.t index a65e6e8..7a2c0f7 100644 --- a/t/read.t +++ b/t/read.t @@ -6,10 +6,13 @@ use lib "lib"; use Config; -plan 3; +plan 5; my $config = Config.new(); -ok $config.read("t/test.yaml"); -ok $config.get("a") eq "a"; -ok $config.get("b.c") eq "c"; +ok $config.read("t/test.yaml"), "Read a YAML file"; + +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") === "test", "Get nonexistant key with default"; -- cgit v1.1