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=1c26ff41e90f7f81790e966b1c874a4afb362323;hp=5ad04688f0a0e8d15c2a492ad78c891709a98a8d;hb=c63419999f2c029f35bfcd700ae196eb0a3a08fa;hpb=dcfb1d1d1a544d27a82cb174168df23abc539acb diff --git a/t/53-perl.t b/t/53-perl.t index 5ad0468..1c26ff4 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; { @@ -19,8 +19,42 @@ use Config::Any::Perl; # test invalid config { my $file = 't/invalid/conf.pl'; - my $config = eval { Config::Any::Perl->load( $file ) }; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + 1; + }; + + ok( !$loaded, 'config load failed' ); + ok( !$config, 'config load failed' ); + ok( $@, "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' ); + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); +} + +# test missing config +{ + my $file = 't/invalid/missing.pl'; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + 1; + }; + ok( !$loaded, 'config load failed' ); ok( !$config, 'config load failed' ); ok( $@, "error thrown ($@)" ); }