fix t/64-extfail.t to pass when t/lib is in @INC
Brian Cassidy [Fri, 10 Dec 2010 18:16:41 +0000 (18:16 +0000)]
Changes
lib/Config/Any.pm
t/64-extfail.t
t/conf/conf.extfail [new file with mode: 0644]

diff --git a/Changes b/Changes
index e30eba0..42555ba 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Config-Any
 
+0.21 TO BE RELEASED
+    - fix t/64-extfail.t to pass when t/lib is in @INC
+
 0.20 Fri 06 Aug 2010
     - enable -ForceArray option by default for Config::General (caelum)
 
index c7164cd..4033b49 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use Carp;
 use Module::Pluggable::Object ();
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 =head1 NAME
 
index d6cace8..a978051 100644 (file)
@@ -8,14 +8,14 @@ use Config::Any;
 {
     my $result = eval {
         Config::Any->load_files(
-            { files => [ 't/conf/conf.unsupported' ], use_ext => 1 } );
+            { files => [ 't/conf/conf.extfail' ], use_ext => 1 } );
     };
 
     ok( !defined $result, 'empty result' );
     ok( $@,               'error thrown' );
     like(
         $@,
-        qr/There are no loaders available for \.unsupported files/,
+        qr/There are no loaders available for \.extfail files/,
         'error message'
     );
 }
diff --git a/t/conf/conf.extfail b/t/conf/conf.extfail
new file mode 100644 (file)
index 0000000..1c61c46
--- /dev/null
@@ -0,0 +1 @@
+Placeholder file for t/64-extfail.t