From 89e669fda20ac8efb3f840e23e58515bc779b355 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand - Tux" Date: Sat, 5 Apr 2014 11:52:29 +0200 Subject: [PATCH] That test was not testing what it was supposed to test :) --- t/10_base.t | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/t/10_base.t b/t/10_base.t index b840ef5..a0a220c 100644 --- a/t/10_base.t +++ b/t/10_base.t @@ -18,9 +18,7 @@ BEGIN { } ok (my $conf = Config::Perl::V::myconfig, "Read config"); -for (qw( build environment config inc )) { - ok (exists $conf->{build}, "Has build entry"); - } +ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc ); is (lc $conf->{build}{osname}, lc $conf->{config}{osname}, "osname"); SKIP: { -- 2.11.4.GIT