[Bast-commits] r4363 - DBIx-Class/0.08/trunk

bricas at dev.catalyst.perl.org bricas at dev.catalyst.perl.org
Thu May 8 16:44:24 BST 2008


Author: bricas
Date: 2008-05-08 16:44:24 +0100 (Thu, 08 May 2008)
New Revision: 4363

Modified:
   DBIx-Class/0.08/trunk/Changes
   DBIx-Class/0.08/trunk/Makefile.PL
Log:
add Test::Exception to deps (RT #34256). move testing modules to test_requires().

Modified: DBIx-Class/0.08/trunk/Changes
===================================================================
--- DBIx-Class/0.08/trunk/Changes	2008-05-08 14:00:50 UTC (rev 4362)
+++ DBIx-Class/0.08/trunk/Changes	2008-05-08 15:44:24 UTC (rev 4363)
@@ -1,5 +1,6 @@
 Revision history for DBIx::Class
 
+        - add Test::Exception to test requirements (RT #34256)
         - make ash's build_requires/META.yml fixes work better
         - is_deferable support on relations used by the SQL::Translator
           parser

Modified: DBIx-Class/0.08/trunk/Makefile.PL
===================================================================
--- DBIx-Class/0.08/trunk/Makefile.PL	2008-05-08 14:00:50 UTC (rev 4362)
+++ DBIx-Class/0.08/trunk/Makefile.PL	2008-05-08 15:44:24 UTC (rev 4363)
@@ -28,10 +28,11 @@
 # Perl 5.8.0 doesn't have utf8::is_utf8()
 requires 'Encode'                    => 0 if ($] <= 5.008000);  
 
-build_requires 'DBD::SQLite'         => 1.13;
-build_requires 'Test::Builder'       => 0.33;
-build_requires 'Test::Warn'          => 0.08;
-build_requires 'Test::NoWarnings'    => 0.08;
+test_requires 'DBD::SQLite'         => 1.13;
+test_requires 'Test::Builder'       => 0.33;
+test_requires 'Test::Warn'          => 0.08;
+test_requires 'Test::NoWarnings'    => 0.08;
+test_requires 'Test::Exception'     => 0;
 
 install_script 'script/dbicadmin';
 




More information about the Bast-commits mailing list