From: Dagfinn Ilmari Mannsåker Date: Sat, 8 Dec 2012 23:09:29 +0000 (+0000) Subject: Change build_requires to test_requires X-Git-Tag: 0.06~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f6982f5fc215257210cc837934331e0cade2898e;hp=794d7304c955514ec6a073faad549afbe0d5d299;p=gitmo%2FMooseX-MetaDescription.git Change build_requires to test_requires --- diff --git a/Makefile.PL b/Makefile.PL index e95650f..74ffec5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,6 @@ use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.67; use Module::Install::AuthorRequires; use Module::Install::AuthorTests; @@ -12,7 +12,7 @@ license 'perl'; requires 'Moose' => 0.40; # things the tests need -build_requires 'Test::More' => '0.62'; +test_requires 'Test::More' => '0.62'; author_requires 'Test::Pod' => '1.14'; author_requires 'Test::Pod::Coverage';