X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=7311fb848757eaab3b7c91807691cdd4747c98eb;hb=b4160dbe7bdfeacc3f559cf3eb9b792a5794a62b;hp=13cf932dfb0b6b7a91803c65fa9ccc689107aab0;hpb=4e31595cef06f35cd442a54206f3c1a05c1ac31f;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 13cf932..7311fb8 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,8 +3,14 @@ use inc::Module::Install; name 'Mouse'; all_from 'lib/Mouse.pm'; -build_requires 'Test::More'; +tests 't/*.t t/*/*.t'; + +if ($] < 5.007003) { + requires 'Scalar::Util'; +} + build_requires 'Test::Exception'; +build_requires 'Test::More'; +auto_include; WriteAll; -