X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Storage.git;a=blobdiff_plain;f=t%2F002_basic_io.t;h=971261bfa41cc286ad684005b81e0aa669fbbd4b;hp=4474eb62a0360852086ec9916c7d49f4de49df4b;hb=4fa64e865c99a6dcc3bec159a662300151d62fdf;hpb=eaa263571728bf8b5abb604c61dd73ff44be9417 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;