update changes file
[p5sagit/Config-Any.git] / t / 53-perl.t
index 427f611..5ad0468 100644 (file)
@@ -1,11 +1,26 @@
-use Test::More tests => 2;\r
-\r
-use Config::Any::Perl;\r
-\r
-my $config = eval { Config::Any::Perl->load( 't/conf/conf.pl' ) };\r
-\r
-SKIP: {\r
-    skip "Couldn't Load Perl plugin", 2 if $@;\r
-    ok( $config );\r
-    is( $config->{ name }, 'TestApp' );\r
-}\r
+use strict;
+use warnings;
+
+use Test::More tests => 5;
+
+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 = eval { Config::Any::Perl->load( $file ) };
+
+    ok( !$config, 'config load failed' );
+    ok( $@,       "error thrown ($@)" );
+}