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=4e59ae7e5791fe0764d5b7cadd7c2b18fa669ba3;hp=b11a60c07d829ef2e4ed045daab22cf3551c6e54;hb=3a4895023ae6455d2fdef716214e94c3e3ddfdcc;hpb=5770ffc01feb6998b8a7e23d66b52d33e4a62b35 diff --git a/t/53-perl.t b/t/53-perl.t index b11a60c..4e59ae7 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 => 12; +use Config::Any; use Config::Any::Perl; { @@ -18,9 +18,43 @@ use Config::Any::Perl; # test invalid config { - my $file = 't/invalid/conf.pl'; - my $config = eval { Config::Any::Perl->load( $file ) }; + my $file = 't/invalid/conf.pl'; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + 1; + }; + + ok !$loaded, 'config load failed'; + is $config, undef, 'config load failed'; + like $@, qr/syntax error/, 'error thrown'; +} + +# parse error generated on invalid config +{ + my $file = 't/invalid/conf.pl'; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + Config::Any->load_files( { files => [$file], use_ext => 1} ); + 1; + }; + + ok !$loaded, 'config load failed'; + is $config, undef, 'config load failed'; + like $@, qr/syntax error/, 'error thrown'; +} + +# test missing config +{ + my $file = 't/invalid/missing.pl'; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + 1; + }; - ok( !$config, 'config load failed' ); - ok( $@, "error thrown ($@)" ); + ok !$loaded, 'config load failed'; + is $config, undef, 'config load failed'; + isnt $@, '', 'error thrown'; }