Create a JSON::Any object, so setting $ENV{JSON_ANY_CONFIG} works.
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
index db190fc..7f405e8 100644 (file)
@@ -5,11 +5,12 @@ use warnings;
 
 use Test::More;
 
-BEGIN {        
-    eval "use Test::JSON";
-    plan skip_all => "Test::JSON is required for this test" if $@;            
-    eval "use JSON::Any";
-    plan skip_all => "JSON::Any is required for this test" if $@;    
+use Test::Requires {
+    'Test::JSON' => 0.01, # skip all if not installed
+    'JSON::Any' => 0.01,
+};
+
+BEGIN {
     plan tests => 12;
     use_ok('MooseX::Storage');
 }