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=b11a60c07d829ef2e4ed045daab22cf3551c6e54;hp=6d2d5ca70aeab4707ddd6f9467cbf643ca0f974a;hb=5770ffc01feb6998b8a7e23d66b52d33e4a62b35;hpb=692fc1958052bf9e7783f424e9733efde5736aeb diff --git a/t/53-perl.t b/t/53-perl.t index 6d2d5ca..b11a60c 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 ($@)" ); +}