X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=ddb1700e9a629827b76515f5935aed880c5b4198;hb=c86a46cc54baef2a5738176a70288db5f3f1376f;hp=9c850ec1a7c118dfcb0695e1e7f2cab5cab9b101;hpb=06a66732eb48842ce6bea1259cf4570cc34d99ff;p=gitmo%2FMooseX-Storage.git diff --git a/Build.PL b/Build.PL index 9c850ec..ddb1700 100644 --- a/Build.PL +++ b/Build.PL @@ -1,6 +1,8 @@ -use Module::Build; use strict; +use warnings; + +use Module::Build; my $build = Module::Build->new( module_name => 'MooseX::Storage', @@ -14,9 +16,6 @@ my $build = Module::Build->new( # and the ability to save the # file to disk 'IO::File' => '0', - # this if for the basic role with checksum - 'Digest::MD5' => '0', - 'Data::Dumper' => '0', }, optional => { 'IO::AtomicFile' => '0', @@ -26,10 +25,15 @@ my $build = Module::Build->new( # them on people :) 'Test::YAML::Valid' => '0', 'Test::JSON' => '0', + # this if for the basic role with checksum + 'Digest' => '0', + 'Digest::SHA1' => '0', + 'Data::Dumper' => '0', }, build_requires => { 'Test::More' => '0.62', 'Test::Exception' => '0.21', + 'Test::Deep' => '0', }, create_makefile_pl => 'traditional', recursive_test_files => 1,