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=1a749a1dd346e9b6d60bdf917cb8aeffbd30c126;hp=35a5cf66958dab26419fc2b14e45225a87348cce;hb=82410e22b11e82191fa54ba974cdaac68a8c5454;hpb=77f14cda81a1985461745614ec79a76d25f13ac4 diff --git a/t/53-perl.t b/t/53-perl.t index 35a5cf6..1a749a1 100644 --- a/t/53-perl.t +++ b/t/53-perl.t @@ -1,8 +1,8 @@ use strict; use warnings; -use Test::More tests => 5; - +use Test::More tests => 7; +use Config::Any; use Config::Any::Perl; { @@ -22,5 +22,14 @@ use Config::Any::Perl; my $config = eval { Config::Any::Perl->load( $file ) }; ok( !$config, 'config load failed' ); - ok( $@, "error thrown ($@)" ); + ok( $@, "error thrown ($@)" ); +} + +# parse error generated on invalid config +{ + my $file = 't/invalid/conf.pl'; + my $config = eval { Config::Any->load_files( { files => [$file], use_ext => 1} ) }; + + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); }