From: Stevan Little Date: Tue, 26 Jun 2007 22:00:24 +0000 (+0000) Subject: foo X-Git-Tag: 0_03~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Storage.git;a=commitdiff_plain;h=bc0c5bf9b748ff9f3bd6cf8c4f247ea9caa2b35f foo --- diff --git a/Changes b/Changes index fcd6ab6..1b9f7d4 100644 --- a/Changes +++ b/Changes @@ -8,6 +8,8 @@ Revision history for MooseX-Storage * t/ - added test for a custom type handler + - fixed checksum test to skip if Digest::SHA1 + (our default) is not available 0.02 Fri. June 8, 2007 * MooseX::Storage::Base::WithChecksum diff --git a/t/030_with_checksum.t b/t/030_with_checksum.t index fde3d14..407e2fd 100644 --- a/t/030_with_checksum.t +++ b/t/030_with_checksum.t @@ -8,8 +8,8 @@ use Test::Exception; use Test::Deep; BEGIN { - eval "use Digest"; - plan skip_all => "Digest is required for this test" if $@; + 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'); }