fixed bug: [rt.cpan.org #25143] make tests fails
Joel Bernstein [Sun, 25 Feb 2007 20:08:33 +0000 (20:08 +0000)]
- 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.

Changes
lib/Config/Any.pm
t/61-features.t

diff --git a/Changes b/Changes
index 47ae85f..5f9c313 100644 (file)
--- 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.
+
index c64c12c..98ed929 100644 (file)
@@ -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
 
index b2d8467..8436cc6 100644 (file)
@@ -14,7 +14,7 @@ our $cfg_file = 't/conf/conf.foo';
 \r
 eval { Config::Any::INI->load($cfg_file); };\r
 SKIP: {\r
-    skip "File loading backend for INI not found", 9 if $@;\r
+    skip "File loading backend for INI not found", 10 if $@;\r
 \r
     ok( my $c_arr = Config::Any->load_files({ \r
             files           => [ $cfg_file ], \r