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=5ad04688f0a0e8d15c2a492ad78c891709a98a8d;hp=5e51b4124d3c65fbb6a145285ac5d442be2a59b9;hb=45758652c7c8ed8557ecf4170131a42a4477deb5;hpb=83020fbd096a2523ceedbb3ea1e9b99e030f994c diff --git a/t/53-perl.t b/t/53-perl.t index 5e51b41..5ad0468 100644 --- a/t/53-perl.t +++ b/t/53-perl.t @@ -1,17 +1,26 @@ -use Test::More tests => 3; +use strict; +use warnings; -use Config::Any::Perl; +use Test::More tests => 5; -my $file = 't/conf/conf.pl'; -my $config = eval { Config::Any::Perl->load( $file ) }; +use Config::Any::Perl; -SKIP: { - skip "Couldn't Load Perl plugin", 3 if $@; +{ + my $file = 't/conf/conf.pl'; + my $config = Config::Any::Perl->load( $file ); ok( $config ); is( $config->{ name }, 'TestApp' ); - my $config_2 = eval { Config::Any::Perl->load( $file ) }; + 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 = eval { Config::Any::Perl->load( $file ) }; - is_deeply( $config_2, $config, 'multiple loads of perl configs' ); + ok( !$config, 'config load failed' ); + ok( $@, "error thrown ($@)" ); }