X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f704e63488a1248a86a63c60da52182a8563be4a;hb=47b195703a79d662e3a92fd6dd1e230addfb68bb;hp=5a940248ce54e2d63292db36648b4a386ca96084;hpb=688fcdda5c37b86784f8a923b636bdbbf47181d5;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index 5a94024..f704e63 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,8 +12,7 @@ my $win32 = !! ( $^O eq 'Win32' or $^O eq 'cygwin' ); # prereqs requires 'Scalar::Util' => $win32 ? '1.17' : '1.18'; requires 'Carp'; -requires 'Class::MOP' => '0.53'; -requires 'Sub::Name' => '0.02'; +requires 'Class::MOP' => '0.59'; requires 'Sub::Exporter' => '0.972'; # only used by oose.pm, not Moose.pm :P @@ -24,7 +23,9 @@ build_requires 'Test::More' => '0.62'; build_requires 'Test::Exception' => '0.21'; build_requires 'Test::LongString'; -tests('t/*.t t/*/*.t'); +tests_recursive; + +auto_install; WriteAll();