X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=be74c98e88a02d07a7b93475420121c9d92cf07c;hb=8632b6fe69bd4417ad67fbcbbca617ad4fd54ccb;hp=0d68d56f7e983c775b3fe8bb1dcab2544adde2af;hpb=429ce015fa73af2ce45773edf54c1f1fd4216a1b;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 0d68d56..be74c98 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,15 @@ use inc::Module::Install; name 'Mouse'; all_from 'lib/Mouse.pm'; +tests 't/*.t t/*/*.t'; + +if ($] < 5.007003) { + requires 'Scalar::Util'; +} + +build_requires 'Test::Exception'; +build_requires 'Sub::Uplevel'; # required by Test::Exception build_requires 'Test::More'; +auto_include; WriteAll; -