X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_with_checksum.t;h=fde3d1416daed87260966552671f97c567699f1a;hb=c86a46cc54baef2a5738176a70288db5f3f1376f;hp=c144ec2c5ca90d5bfa0a7a240484554d4801689a;hpb=06a66732eb48842ce6bea1259cf4570cc34d99ff;p=gitmo%2FMooseX-Storage.git diff --git a/t/030_with_checksum.t b/t/030_with_checksum.t index c144ec2..fde3d14 100644 --- a/t/030_with_checksum.t +++ b/t/030_with_checksum.t @@ -3,11 +3,14 @@ use strict; use warnings; -use Test::More tests => 26; +use Test::More; use Test::Exception; use Test::Deep; BEGIN { + eval "use Digest"; + plan skip_all => "Digest is required for this test" if $@; + plan tests => 26; use_ok('MooseX::Storage'); }