added a flatten_to_hash option to return a simple key-value hashref instead of the...
[p5sagit/Config-Any.git] / t / 53-perl.t
index 5e51b41..b11a60c 100644 (file)
@@ -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 ($@)" ); 
 }