No real reason for MOUSE_DEBUG these days
[gitmo/Mouse.git] / Makefile.PL
index 0d68d56..5390167 100755 (executable)
@@ -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;
-