Fix docs
[gitmo/MooseX-Storage.git] / t / 100_io.t
index 3e44027..610eaa9 100644 (file)
@@ -6,11 +6,14 @@ use warnings;
 use Test::More;
 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');
 }
 
@@ -29,7 +32,6 @@ BEGIN {
        has 'object' => (is => 'ro', isa => 'Object');    
 }
 
-my $dir = tempdir( CLEANUP => 1 );
 my $file = catfile( $dir, 'temp.json' );
 
 {