prereq report test
[p5sagit/Config-Any.git] / t / 50-general.t
index 9d4a884..4f7f971 100644 (file)
@@ -1,11 +1,50 @@
-use Test::More tests => 2;
+use strict;
+use warnings;
 
+use Test::More;
+use Config::Any;
 use Config::Any::General;
 
-my $config = eval { Config::Any::General->load( 't/conf/conf.conf' ) };
+if ( !Config::Any::General->is_supported && !$ENV{RELEASE_TESTING}) {
+    plan skip_all => 'Config::General format not supported';
+}
+else {
+    plan tests => 9;
+}
 
-SKIP: {
-    skip "Couldn't Load Config::General plugin", 2 if $@;
+{
+    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 } );
+}
+
+{
+    my $config
+        = Config::Any::General->load( 't/conf/single_element_arrayref.conf' );
+    is_deeply $config->{ foo }, [ 'bar' ], 'single element arrayref';
+}
+
+# test invalid config
+{
+    my $file = 't/invalid/conf.conf';
+    my $config = eval { Config::Any::General->load( $file ) };
+
+    is $config, undef, 'config load failed';
+    isnt $@, '', 'error thrown';
+}
+
+# parse error generated on invalid config
+{
+    my $file = 't/invalid/conf.conf';
+    my $config = eval { Config::Any->load_files( { files => [$file], use_ext => 1} ) };
+
+    is $config, undef, 'config load failed';
+    isnt $@, '', 'error thrown';
 }