Remove Test::TempDir
[gitmo/MooseX-Storage.git] / t / 002_basic_io.t
index 06a3322..0293692 100644 (file)
@@ -4,15 +4,17 @@ 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 $@;            
+use Test::Requires {
+    'JSON::Any' => 0.01, # skip all if not installed
+};
+
+BEGIN {
     plan tests => 10;
     use_ok('MooseX::Storage');
 }