X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=53901676e4b7de2b5c239c40b66ae0707e6527de;hb=2bc93d688b465f6b707f9679392e10089b611944;hp=0d68d56f7e983c775b3fe8bb1dcab2544adde2af;hpb=429ce015fa73af2ce45773edf54c1f1fd4216a1b;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 0d68d56..5390167 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,14 @@ use inc::Module::Install; name 'Mouse'; all_from 'lib/Mouse.pm'; +tests 't/*.t t/*/*.t'; + +# Scalar::Util < 1.14 has a bug. +# > Fixed looks_like_number(undef) to return false for perl >= 5.009002 +requires 'Scalar::Util' => 1.14; + +build_requires 'Test::Exception'; build_requires 'Test::More'; +auto_include; WriteAll; -