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=e684bf28e726628efe7f1651913253721f951f62;hp=9d4a8841da70deb802490b5a88d67dfbd315afc7;hb=7c2181827882c125de98ccbe16402f5b277a3f44;hpb=f0e3c2214342d0d8a8839009b8b9c7e6bfbc7ab2 diff --git a/t/50-general.t b/t/50-general.t index 9d4a884..e684bf2 100644 --- a/t/50-general.t +++ b/t/50-general.t @@ -1,11 +1,19 @@ -use Test::More tests => 2; +use Test::More tests => 4; use Config::Any::General; my $config = eval { Config::Any::General->load( 't/conf/conf.conf' ) }; SKIP: { - skip "Couldn't Load Config::General plugin", 2 if $@; + skip "Couldn't Load Config::General plugin", 4 if $@; ok( $config ); is( $config->{ name }, 'TestApp' ); + ok( exists $config->{ Component } ); + + $config = eval { + Config::Any::General->load( 't/conf/conf.conf', + { -LowerCaseNames => 1 } ); + }; + + ok( exists $config->{ component } ); }