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=6db72431cc9c2f36ec20173b6fa5c01d2c7cd94b;hp=e684bf28e726628efe7f1651913253721f951f62;hb=7adf5673d07031b77f7edd3403491512b9a48cb3;hpb=92a04e78451078b33f75e7c44d247b024c27b4f7 diff --git a/t/50-general.t b/t/50-general.t index e684bf2..6db7243 100644 --- a/t/50-general.t +++ b/t/50-general.t @@ -1,19 +1,42 @@ -use Test::More tests => 4; +use strict; +use warnings; +use Test::More; use Config::Any::General; -my $config = eval { Config::Any::General->load( 't/conf/conf.conf' ) }; +if ( !Config::Any::General->is_supported ) { + plan skip_all => 'Config::General format not supported'; +} +else { + plan tests => 7; +} -SKIP: { - skip "Couldn't Load Config::General plugin", 4 if $@; +{ + my $config = Config::Any::General->load( 't/conf/conf.conf' ); ok( $config ); is( $config->{ name }, 'TestApp' ); ok( exists $config->{ Component } ); +} - $config = eval { - Config::Any::General->load( 't/conf/conf.conf', - { -LowerCaseNames => 1 } ); - }; - +{ + my $config = Config::Any::General->load( 't/conf/conf.conf', + { -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 ($@)" ); +}