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=4f7f971d452537391bed38add91f3db4a8c90deb;hp=c73c68aad2cd62eb4a53e3a562b4c648fb0b9105;hb=712235202a9cc46d4d5efa86a7f40c64771f9498;hpb=dcfb1d1d1a544d27a82cb174168df23abc539acb diff --git a/t/50-general.t b/t/50-general.t index c73c68a..4f7f971 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 ) { +if ( !Config::Any::General->is_supported && !$ENV{RELEASE_TESTING}) { plan skip_all => 'Config::General format not supported'; } else { - plan tests => 6; + plan tests => 9; } { @@ -24,11 +25,26 @@ else { ok( exists $config->{ component } ); } +{ + my $config + = Config::Any::General->load( 't/conf/single_element_arrayref.conf' ); + is_deeply $config->{ foo }, [ 'bar' ], 'single element arrayref'; +} + # 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 ($@)" ); + is $config, undef, 'config load failed'; + isnt $@, '', '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} ) }; + + is $config, undef, 'config load failed'; + isnt $@, '', 'error thrown'; }