X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_io.t;h=fc5d0f5c92c77b18f8a49e524bade0fc9d84e2f8;hb=4fa64e865c99a6dcc3bec159a662300151d62fdf;hp=b494e10b911d3507be2591bb1272d8be698041bf;hpb=eaa263571728bf8b5abb604c61dd73ff44be9417;p=gitmo%2FMooseX-Storage.git diff --git a/t/100_io.t b/t/100_io.t index b494e10..fc5d0f5 100644 --- a/t/100_io.t +++ b/t/100_io.t @@ -3,9 +3,12 @@ use strict; use warnings; -use Test::More tests => 10; +use Test::More; -BEGIN { +BEGIN { + eval "use JSON::Any"; + plan skip_all => "JSON::Any is required for this test" if $@; + plan tests => 10; use_ok('MooseX::Storage'); }