From: Florian Ragwitz Date: Thu, 23 Apr 2009 19:42:09 +0000 (+0200) Subject: Declare test dependency on Test::Exception. X-Git-Tag: 0.00802~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Emulate-Class-Accessor-Fast.git;a=commitdiff_plain;h=c858b57ea3b1fcdf075a2f9a64698d700e94d478 Declare test dependency on Test::Exception. Closes RT#43194. --- diff --git a/Changes b/Changes index 3378467..9070864 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ + - Declare test dependency on Test::Exception. Closes RT#43194. (rafl) - Turn build_requires on Test::More into test_requires. (rafl) - Fix doc typos in SYNOPSIS. Closes RT#40380. (rafl) diff --git a/Makefile.PL b/Makefile.PL index b744efe..fec2b64 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,5 +11,6 @@ all_from 'lib/MooseX/Emulate/Class/Accessor/Fast.pm'; requires 'Moose' => '0.74'; requires 'namespace::clean' => 0; test_requires 'Test::More' => 0; +test_requires 'Test::Exception' => 0; WriteAll;