0.06
[gitmo/MooseX-Storage.git] / t / 030_with_checksum.t
index c144ec2..fc655e2 100644 (file)
@@ -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; use Digest::SHA1";
+    plan skip_all => "Digest and Digest::SHA1 is required for this test" if $@;           
+    plan tests => 26;
     use_ok('MooseX::Storage');
 }