ignore *.old file
[gitmo/Mouse.git] / Makefile.PL
CommitLineData
c3398f5b 1use inc::Module::Install;
2
3name 'Mouse';
4all_from 'lib/Mouse.pm';
5
b9add211 6tests 't/*.t t/*/*.t';
7
ec53d678 8# Scalar::Util < 1.14 has a bug.
9# > Fixed looks_like_number(undef) to return false for perl >= 5.009002
10requires 'Scalar::Util' => 1.14;
272a1930 11
eab81545 12build_requires 'Test::Exception';
c3398f5b 13build_requires 'Test::More';
c3398f5b 14
654a7eeb 15auto_include;
74f2f839 16WriteAll;