use Test::Requires in tests
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
index b589ece..7f405e8 100644 (file)
@@ -5,9 +5,12 @@ use warnings;
 
 use Test::More;
 
-BEGIN {        
-    eval "use Test::JSON";
-    plan skip_all => "Test::JSON 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');
 }