X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F50-general.t;h=e173624362aaf8189ee6cb5ffeb9147e02e4200a;hp=ec0dc533e91ff6af2530d0776304439edd1c2e5d;hb=5770ffc01feb6998b8a7e23d66b52d33e4a62b35;hpb=692fc1958052bf9e7783f424e9733efde5736aeb diff --git a/t/50-general.t b/t/50-general.t index ec0dc53..e173624 100644 --- a/t/50-general.t +++ b/t/50-general.t @@ -8,7 +8,7 @@ if ( !Config::Any::General->is_supported ) { plan skip_all => 'Config::General format not supported'; } else { - plan tests => 4; + plan tests => 6; } { @@ -23,3 +23,12 @@ else { { -LowerCaseNames => 1 } ); ok( exists $config->{ component } ); } + +# test invalid config +{ + my $file = 't/invalid/conf.conf'; + my $config = eval { Config::Any::General->load( $file ) }; + + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); +}