use Test::Requires in tests
[gitmo/MooseX-Storage.git] / t / 100_io.t
index 8874409..78e3dc8 100644 (file)
@@ -8,10 +8,12 @@ use Test::TempDir;
 use File::Spec::Functions;
 my $dir = tempdir;
 
-BEGIN {  
-    eval "use JSON::Any";
-    plan skip_all => "JSON::Any is required for this test" if $@;         
-    plan tests => 10;    
+use Test::Requires {
+    'JSON::Any' => 0.01, # skip all if not installed
+};
+
+BEGIN {
+    plan tests => 10;
     use_ok('MooseX::Storage');
 }