From: gfx Date: Sat, 26 Sep 2009 03:39:10 +0000 (+0900) Subject: Work around broken Test::Exception X-Git-Tag: 0.35~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=f1c70cbe8ab21dd89f564689ef9e20f6fbb82fea Work around broken Test::Exception --- diff --git a/Makefile.PL b/Makefile.PL index c26b751..9d8bc43 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,7 +13,9 @@ requires 'Scalar::Util' => 1.14; test_requires 'Test::More' => 0.88; test_requires 'Test::Exception' => 0.27; -test_requires 'Test::Output' => 0.16; +# test_requires 'Test::Output' => 0.16; # too many dependencies! + +include 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wrong) recommends 'MRO::Compat' if $] < 5.010;