always run all tests during release
[p5sagit/Config-Any.git] / t / 50-general.t
index 5361ca2..4f7f971 100644 (file)
@@ -5,7 +5,7 @@ use Test::More;
 use Config::Any;
 use Config::Any::General;
 
-if ( !Config::Any::General->is_supported ) {
+if ( !Config::Any::General->is_supported && !$ENV{RELEASE_TESTING}) {
     plan skip_all => 'Config::General format not supported';
 }
 else {
@@ -36,8 +36,8 @@ else {
     my $file = 't/invalid/conf.conf';
     my $config = eval { Config::Any::General->load( $file ) };
 
-    ok( !$config, 'config load failed' );
-    ok( $@,       "error thrown ($@)" );
+    is $config, undef, 'config load failed';
+    isnt $@, '', 'error thrown';
 }
 
 # parse error generated on invalid config
@@ -45,6 +45,6 @@ else {
     my $file = 't/invalid/conf.conf';
     my $config = eval { Config::Any->load_files( { files => [$file], use_ext => 1} ) };
 
-    ok( !$config, 'config load failed' );
-    ok( $@,       "error thrown ($@)" );
+    is $config, undef, 'config load failed';
+    isnt $@, '', 'error thrown';
 }