From: Joel Bernstein Date: Sun, 25 Feb 2007 20:08:33 +0000 (+0000) Subject: fixed bug: [rt.cpan.org #25143] make tests fails X-Git-Tag: v0.08~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=commitdiff_plain;h=e17d1736c6f94fcf7b5a1f395eaac6ead5882f6c;hp=4ab3432cd53b63f3979ead71525ebcf217825328 fixed bug: [rt.cpan.org #25143] make tests fails - t/61_features.t had 1 more test added than was set to skip if the INI parser was not installed. Fixed by s/9/10/ on the skip() line. --- diff --git a/Changes b/Changes index 47ae85f..5f9c313 100644 --- a/Changes +++ b/Changes @@ -17,3 +17,8 @@ Revision history for Config-Any 0.06 Thu Feb 22 21:05:00 2007 removed reference to Test::Exception, bumped version number +0.06_01 Sun Feb 25 19:23:00 2007 + fixed bug [rt.cpan.org #25143] make tests fails + - t/61_features.t had 1 more test added than was set to skip if the INI parser + was not installed. Fixed by s/9/10/ on the skip() line. + diff --git a/lib/Config/Any.pm b/lib/Config/Any.pm index c64c12c..98ed929 100644 --- a/lib/Config/Any.pm +++ b/lib/Config/Any.pm @@ -6,7 +6,7 @@ use Carp; use Module::Pluggable::Object (); use English qw(-no_match_vars); -our $VERSION = '0.06'; +our $VERSION = '0.06_01'; =head1 NAME diff --git a/t/61-features.t b/t/61-features.t index b2d8467..8436cc6 100644 --- a/t/61-features.t +++ b/t/61-features.t @@ -14,7 +14,7 @@ our $cfg_file = 't/conf/conf.foo'; eval { Config::Any::INI->load($cfg_file); }; SKIP: { - skip "File loading backend for INI not found", 9 if $@; + skip "File loading backend for INI not found", 10 if $@; ok( my $c_arr = Config::Any->load_files({ files => [ $cfg_file ],