X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_io.t;h=610eaa9d4b09c4a94b51da770c03d49910591674;hb=b47a0bbdcb1899d5b3bf502d14e412ca62c16add;hp=887440908e31131ff50e4c6c0a3cf556bdb183a0;hpb=b5f363acfcf077778dd4f3b59460a0cbb9e51400;p=gitmo%2FMooseX-Storage.git diff --git a/t/100_io.t b/t/100_io.t index 8874409..610eaa9 100644 --- a/t/100_io.t +++ b/t/100_io.t @@ -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'); }