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=cc7d6f8444b1aac6e10527fc0b7411ed501e2460;hp=ec0dc533e91ff6af2530d0776304439edd1c2e5d;hb=766100bdb8cc2f48b73464a9364a1dab276d186e;hpb=5a2e0210fe5c7da046be37b4240008f2b667be67 diff --git a/t/50-general.t b/t/50-general.t index ec0dc53..cc7d6f8 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 => 7; } { @@ -23,3 +23,18 @@ else { { -LowerCaseNames => 1 } ); 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 ($@)" ); +}