X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F061_basic_deferred_w_io.t;h=55f215ad3de4f8b8a7327cd1b99529600c4a2e8c;hb=4fa64e865c99a6dcc3bec159a662300151d62fdf;hp=3cc66af136b225c8232def5b29fe7b42d80ea0a1;hpb=eaa263571728bf8b5abb604c61dd73ff44be9417;p=gitmo%2FMooseX-Storage.git diff --git a/t/061_basic_deferred_w_io.t b/t/061_basic_deferred_w_io.t index 3cc66af..55f215a 100644 --- a/t/061_basic_deferred_w_io.t +++ b/t/061_basic_deferred_w_io.t @@ -7,7 +7,9 @@ use Test::More; BEGIN { eval "use IO::AtomicFile"; - plan skip_all => "IO::AtomicFile is required for this test" if $@; + 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 => 21; use_ok('MooseX::Storage'); }