Change build_requires to test_requires
Dagfinn Ilmari Mannsåker [Sat, 8 Dec 2012 23:09:29 +0000 (23:09 +0000)]
Makefile.PL

index e95650f..74ffec5 100644 (file)
@@ -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';