Remove Test::TempDir
[gitmo/MooseX-Storage.git] / t / 100_io.t
index 8874409..610eaa9 100644 (file)
@@ -4,14 +4,16 @@ use strict;
 use warnings;
 
 use Test::More;
-use Test::TempDir;
+use File::Temp qw(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');
 }