X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=53901676e4b7de2b5c239c40b66ae0707e6527de;hb=28e0fb11129a2383181ad61a94ae878dda5daa58;hp=13cf932dfb0b6b7a91803c65fa9ccc689107aab0;hpb=4e31595cef06f35cd442a54206f3c1a05c1ac31f;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 13cf932..5390167 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'; + +# 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; -