use Test::Requires in tests
[gitmo/MooseX-Storage.git] / t / 002_basic_io.t
index 06a3322..538ec14 100644 (file)
@@ -10,9 +10,11 @@ use File::Spec::Functions;
 
 my $dir = tempdir;
 
-BEGIN {        
-    eval "use JSON::Any";
-    plan skip_all => "JSON::Any is required for this test" if $@;            
+use Test::Requires {
+    'JSON::Any' => 0.01, # skip all if not installed
+};
+
+BEGIN {
     plan tests => 10;
     use_ok('MooseX::Storage');
 }