X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F50-general.t;fp=t%2F50-general.t;h=6db72431cc9c2f36ec20173b6fa5c01d2c7cd94b;hp=c73c68aad2cd62eb4a53e3a562b4c648fb0b9105;hb=7adf5673d07031b77f7edd3403491512b9a48cb3;hpb=4e03388014920f2a4004d32d145304d3846c8e43 diff --git a/t/50-general.t b/t/50-general.t index c73c68a..6db7243 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 => 6; + plan tests => 7; } { @@ -24,6 +24,14 @@ 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';