Remove Test::TempDir
[gitmo/MooseX-Storage.git] / t / 061_basic_deferred_w_io.t
index 704cba8..f66508c 100644 (file)
@@ -4,16 +4,17 @@ use strict;
 use warnings;
 
 use Test::More;
-use Test::TempDir;
+use File::Temp qw(tempdir);
 use File::Spec::Functions;
 
 my $dir = tempdir;
 
+use Test::Requires {
+    'IO::AtomicFile' => 0.01, # skip all if not installed
+    'JSON::Any' => 0.01,
+};
+
 BEGIN {
-    eval "use IO::AtomicFile";
-    plan skip_all => "IO::AtomicFile is required for this test" if $@;
-    eval "use JSON::Any";
-    plan skip_all => "JSON::Any is required for this test" if $@;
     plan tests => 20;
     use_ok('MooseX::Storage');
 }
@@ -22,15 +23,15 @@ BEGIN {
     package Foo;
     use Moose;
     use MooseX::Storage;
-
+    
     with 'MooseX::Storage::Deferred';
-
+    
     has 'number' => (is => 'ro', isa => 'Int');
     has 'string' => (is => 'ro', isa => 'Str');
-    has 'float'  => (is => 'ro', isa => 'Num');
+    has 'float'  => (is => 'ro', isa => 'Num');        
     has 'array'  => (is => 'ro', isa => 'ArrayRef');
-    has 'hash'   => (is => 'ro', isa => 'HashRef');
-       has 'object' => (is => 'ro', isa => 'Object');
+    has 'hash'   => (is => 'ro', isa => 'HashRef');    
+       has 'object' => (is => 'ro', isa => 'Object');    
 }
 
 my $file = catfile($dir, 'temp.json');