remove useless "use Carp", squash warning in test suite.
Brian Cassidy [Thu, 5 Aug 2010 20:00:10 +0000 (20:00 +0000)]
lib/Config/Any/General.pm
t/10-branches.t

index 609d914..469ec81 100644 (file)
@@ -2,7 +2,6 @@ package Config::Any::General;
 
 use strict;
 use warnings;
-use Carp;
 
 use base 'Config::Any::Base';
 
index f82303b..d00377b 100644 (file)
@@ -40,8 +40,13 @@ use_ok( 'Config::Any' );
 }
 
 my @files = glob( "t/supported/conf.*" );
-ok( Config::Any->load_files( { files => \@files, use_ext => 0 } ),
-    "use_ext 0 works" );
+{
+    require Config::Any::General;
+    local $SIG{ __WARN__ } = sub { }
+        if Config::Any::General->is_supported;
+    ok( Config::Any->load_files( { files => \@files, use_ext => 0 } ),
+        "use_ext 0 works" );
+}
 
 my $filter = sub { return };
 ok( Config::Any->load_files( { files => \@files, use_ext => 1 } ),