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=5361ca27104ee43f3062170dbf0c7c35a610b6d1;hp=6db72431cc9c2f36ec20173b6fa5c01d2c7cd94b;hb=1afb249c67eda203b13fef661fd046bff0ee26cc;hpb=7adf5673d07031b77f7edd3403491512b9a48cb3 diff --git a/t/50-general.t b/t/50-general.t index 6db7243..5361ca2 100644 --- a/t/50-general.t +++ b/t/50-general.t @@ -2,13 +2,14 @@ use strict; use warnings; use Test::More; +use Config::Any; use Config::Any::General; if ( !Config::Any::General->is_supported ) { plan skip_all => 'Config::General format not supported'; } else { - plan tests => 7; + plan tests => 9; } { @@ -25,11 +26,9 @@ else { } { - my $config = Config::Any::General->load( - 't/conf/single_element_arrayref.conf' - ); - is_deeply $config->{foo}, [ 'bar' ], - 'single element arrayref'; + my $config + = Config::Any::General->load( 't/conf/single_element_arrayref.conf' ); + is_deeply $config->{ foo }, [ 'bar' ], 'single element arrayref'; } # test invalid config @@ -40,3 +39,12 @@ else { ok( !$config, 'config load failed' ); ok( $@, "error thrown ($@)" ); } + +# parse error generated on invalid config +{ + my $file = 't/invalid/conf.conf'; + my $config = eval { Config::Any->load_files( { files => [$file], use_ext => 1} ) }; + + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); +}