X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F060_basic_deferred.t;h=9be9b3a3db860beeb3b90904d40c7c8abe756579;hb=4fa64e865c99a6dcc3bec159a662300151d62fdf;hp=cec3ab3aa67f4de7013f8dfbe335c4f2bca4abd1;hpb=eaa263571728bf8b5abb604c61dd73ff44be9417;p=gitmo%2FMooseX-Storage.git diff --git a/t/060_basic_deferred.t b/t/060_basic_deferred.t index cec3ab3..9be9b3a 100644 --- a/t/060_basic_deferred.t +++ b/t/060_basic_deferred.t @@ -1,4 +1,5 @@ #!/usr/bin/perl + $|++; use strict; use warnings; @@ -8,7 +9,9 @@ use Storable; BEGIN { eval "use Test::JSON; use Test::YAML::Valid;"; - plan skip_all => "Test::JSON and Test::YAML::Valid are required for this test" if $@; + plan skip_all => "Test::JSON and Test::YAML::Valid are required for this test" if $@; + eval "use JSON::Any"; + plan skip_all => "JSON::Any is required for this test" if $@; plan tests => 33; use_ok('MooseX::Storage'); }