X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F002_basic_io.t;h=971261bfa41cc286ad684005b81e0aa669fbbd4b;hb=4fa64e865c99a6dcc3bec159a662300151d62fdf;hp=4474eb62a0360852086ec9916c7d49f4de49df4b;hpb=cfee09ad9535c50ee223c90fb34afd9667866bcb;p=gitmo%2FMooseX-Storage.git diff --git a/t/002_basic_io.t b/t/002_basic_io.t index 4474eb6..971261b 100644 --- a/t/002_basic_io.t +++ b/t/002_basic_io.t @@ -3,7 +3,14 @@ use strict; use warnings; -use Test::More tests => 9; +use Test::More; + +BEGIN { + eval "use JSON::Any"; + plan skip_all => "JSON::Any is required for this test" if $@; + plan tests => 10; + use_ok('MooseX::Storage'); +} { package Foo;