X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F53-perl.t;h=5ad04688f0a0e8d15c2a492ad78c891709a98a8d;hp=6d2d5ca70aeab4707ddd6f9467cbf643ca0f974a;hb=5d3ad6eb7bf1f5ac814bf92e9b7098b9b650414a;hpb=5a2e0210fe5c7da046be37b4240008f2b667be67 diff --git a/t/53-perl.t b/t/53-perl.t index 6d2d5ca..5ad0468 100644 --- a/t/53-perl.t +++ b/t/53-perl.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More tests => 3; +use Test::More tests => 5; use Config::Any::Perl; @@ -16,3 +16,11 @@ use Config::Any::Perl; is_deeply( $config_load2, $config, 'multiple loads of the same file' ); } +# test invalid config +{ + my $file = 't/invalid/conf.pl'; + my $config = eval { Config::Any::Perl->load( $file ) }; + + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); +}