updated changes and makefile.pl for release
[p5sagit/Config-Any.git] / t / 50-general.t
index cf334cb..ec0dc53 100644 (file)
@@ -1,11 +1,25 @@
-use Test::More tests => 2;\r
-\r
-use Config::Any::General;\r
-\r
-my $config = eval { Config::Any::General->load( 't/conf/conf.conf' ) };\r
-\r
-SKIP: {\r
-    skip "Couldn't Load Config::General plugin", 2 if $@;\r
-    ok( $config );\r
-    is( $config->{ name }, 'TestApp' );\r
-}\r
+use strict;
+use warnings;
+
+use Test::More;
+use Config::Any::General;
+
+if ( !Config::Any::General->is_supported ) {
+    plan skip_all => 'Config::General format not supported';
+}
+else {
+    plan tests => 4;
+}
+
+{
+    my $config = Config::Any::General->load( 't/conf/conf.conf' );
+    ok( $config );
+    is( $config->{ name }, 'TestApp' );
+    ok( exists $config->{ Component } );
+}
+
+{
+    my $config = Config::Any::General->load( 't/conf/conf.conf',
+        { -LowerCaseNames => 1 } );
+    ok( exists $config->{ component } );
+}