Update tests prereqs to include Test::Exception (RT #36339)
Brian Cassidy [Fri, 13 Jun 2008 18:29:46 +0000 (18:29 +0000)]
Changes
Makefile.PL

diff --git a/Changes b/Changes
index 1999e5d..facc8a8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::Authentication
 
+0.1XXX  XXXX
+        - Update tests prereqs to include Test::Exception (RT #36339)
+
 0.10007_01 2008-06-05
         - Some documentation fixes (including RT #36062)
         - Compatibility fix where the use of new style config and old
index 3e88c0c..2071254 100644 (file)
@@ -4,16 +4,17 @@ if( -e 'MANIFEST.SKIP' ) {
     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' );
 }
 
+perl_version '5.008001';
+
 name 'Catalyst-Plugin-Authentication';
 all_from 'lib/Catalyst/Plugin/Authentication.pm';
 
-perl_version '5.8.1';
-
 requires 'Catalyst::Runtime';
 requires 'Class::Inspector';
 requires 'Catalyst::Plugin::Session' => '0.10';
 
 test_requires 'Test::More';
+test_requires 'Test::Exception';
 
 auto_install;
 WriteAll;