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)
{
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'
);
}