X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F53-perl.t;h=cd61a1f829cc9e77d79b2a2c457c5c69b82066a3;hp=427f611c58bd1decd61cc4661001ca6e61cfe802;hb=0354f86ab5460df39f404093fd338f09b36aa54a;hpb=572501abb2165014af8973bf9a4aa1f8a522356d diff --git a/t/53-perl.t b/t/53-perl.t index 427f611..cd61a1f 100644 --- a/t/53-perl.t +++ b/t/53-perl.t @@ -1,11 +1,46 @@ -use Test::More tests => 2; - -use Config::Any::Perl; - -my $config = eval { Config::Any::Perl->load( 't/conf/conf.pl' ) }; - -SKIP: { - skip "Couldn't Load Perl plugin", 2 if $@; - ok( $config ); - is( $config->{ name }, 'TestApp' ); -} +use strict; +use warnings; + +use Test::More tests => 9; +use Config::Any; +use Config::Any::Perl; + +{ + my $file = 't/conf/conf.pl'; + my $config = Config::Any::Perl->load( $file ); + + ok( $config ); + is( $config->{ name }, 'TestApp' ); + + my $config_load2 = Config::Any::Perl->load( $file ); + is_deeply( $config_load2, $config, 'multiple loads of the same file' ); +} + +# test invalid config +{ + my $file = 't/invalid/conf.pl'; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + 1; + }; + + ok( !$loaded, 'config load failed' ); + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); +} + +# parse error generated on invalid config +{ + my $file = 't/invalid/conf.pl'; + my $config; + my $loaded = eval { + $config = Config::Any::Perl->load( $file ); + Config::Any->load_files( { files => [$file], use_ext => 1} ); + 1; + }; + + ok( !$loaded, 'config load failed' ); + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); +}