Fix RT#65907: missing build require: Test::Exception
[catagits/Catalyst-Devel.git] / Makefile.PL
index 2148282..c7ddfa5 100644 (file)
@@ -2,6 +2,7 @@ use strict;
 use warnings;
 use inc::Module::Install 0.91;
 use Module::Install::AuthorRequires;
+use Module::Install::AuthorTests;
 
 name     'Catalyst-Devel';
 all_from 'lib/Catalyst/Devel.pm';
@@ -33,9 +34,12 @@ author_requires 'Module::Info';
 author_requires 'File::Find::Rule';
 
 test_requires 'Test::More' => '0.94';
+test_requires 'Test::Fatal' => '0.003';
 
 install_share 'share';
 
+author_tests 't/author';
+
 if ( $^O eq 'MSWin32' ) {
     # Proc::Background needs this on Win32 but doesn't actually
     # require it, if it's missing it just dies in the Makefile.PL.