From: Tomas Doran Date: Tue, 9 Feb 2010 01:15:28 +0000 (+0000) Subject: RT#54357, fix test_requires X-Git-Tag: 0.001003~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Types-Common.git;a=commitdiff_plain;h=cb7c09660f41e68c95073b8cb3e9444a6445a573 RT#54357, fix test_requires --- diff --git a/Changes b/Changes index 4cc5cb3..b109176 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ + - Add Test::Exception to the test_requires (RT#54357) - Warning when you try to import things from MooseX::Types::Common rather than one of the specific String/Numeric modules in the distribution. 0.001001 2010-01-04 diff --git a/Makefile.PL b/Makefile.PL index deb4dbd..10cd1d8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,6 +12,7 @@ requires 'MooseX::Types' => '0.04'; # things the tests need test_requires 'Test::More' => '0.62'; +test_requires 'Test::Exception'; resources 'IRC' => 'irc://irc.perl.org/#moose'; resources 'license' => 'http://dev.perl.org/licenses/';