From: Karen Etheridge Date: Mon, 15 Apr 2013 00:20:18 +0000 (-0700) Subject: add missing dependency on Test::Exception (RT#70382) X-Git-Tag: 0.16~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Daemonize.git;a=commitdiff_plain;h=c3be5936c21b0b0128b80727cd66fa1771fd3772 add missing dependency on Test::Exception (RT#70382) --- diff --git a/Changes b/Changes index f740e8c..82a0bb9 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,7 @@ Revision history for MooseX-Daemonize - fix incompatibilities with Test::Builder 1.005+ (schwern, RT#76523) - add missing dependency on the version of File::Path which added make_path (RT#79169, Jonathan Sailor) + - add missing test dependency on Test::Exception (RT#70382) 0.15 Thurs. May 31, 2012 - fix versions diff --git a/Makefile.PL b/Makefile.PL index 861eec0..cd8edc0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,6 +13,7 @@ requires 'Moose' => 0.33; requires 'MooseX::Getopt' => 0.07; requires 'MooseX::Types::Path::Class' => 0; requires 'File::Path' => 2.08; +test_requires 'Test::Exception' => 0; no_index 'directory' => 'examples';