From: Chris Prather <cprather@hdpublishing.com>
Date: Mon, 4 May 2009 17:12:47 +0000 (-0400)
Subject: add minimum version for Test::More and Test::Exception so that we at least test the... 
X-Git-Tag: 0.23~5
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1397be4ce6f4b9259658237cf7cfb595358c4b44;p=gitmo%2FMouse.git

add minimum version for Test::More and Test::Exception so that we at least test the same standards as Moose
---

diff --git a/Makefile.PL b/Makefile.PL
index 8c23c33..3170cee 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -10,8 +10,8 @@ tests 't/*.t t/*/*.t';
 # > 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';
+build_requires 'Test::Exception' => 0.21;
+build_requires 'Test::More' => 0.80;
 
 if ($Module::Install::AUTHOR) {
     if (eval "package foo; use Moose; 1;") {