[Moose-commits] r7661 - in Moose/trunk/t: 000_recipes/extending 050_metaclasses

autarch at code2.0beta.co.uk autarch at code2.0beta.co.uk
Fri Feb 13 20:08:48 GMT 2009


Author: autarch
Date: 2009-02-13 12:08:48 -0800 (Fri, 13 Feb 2009)
New Revision: 7661

Modified:
   Moose/trunk/t/000_recipes/extending/001_base_class.t
   Moose/trunk/t/050_metaclasses/012_moose_exporter.t
Log:
Requires Test::Warn 0.11 to avoid some bugs it seems to trigger (based on a report from IRC)

Modified: Moose/trunk/t/000_recipes/extending/001_base_class.t
===================================================================
--- Moose/trunk/t/000_recipes/extending/001_base_class.t	2009-02-13 20:05:46 UTC (rev 7660)
+++ Moose/trunk/t/000_recipes/extending/001_base_class.t	2009-02-13 20:08:48 UTC (rev 7661)
@@ -7,8 +7,8 @@
 use Test::Exception;
 
 BEGIN {
-    unless ( eval 'use Test::Warn 0.10; 1' )  {
-        plan skip_all => 'These tests require Test::Warn 0.10+';
+    unless ( eval 'use Test::Warn 0.11; 1' )  {
+        plan skip_all => 'These tests require Test::Warn 0.11+';
     }
     else {
         plan tests => 4;

Modified: Moose/trunk/t/050_metaclasses/012_moose_exporter.t
===================================================================
--- Moose/trunk/t/050_metaclasses/012_moose_exporter.t	2009-02-13 20:05:46 UTC (rev 7660)
+++ Moose/trunk/t/050_metaclasses/012_moose_exporter.t	2009-02-13 20:08:48 UTC (rev 7661)
@@ -7,8 +7,8 @@
 use Test::Exception;
 
 BEGIN {
-    unless ( eval 'use Test::Warn 0.10; 1' )  {
-        plan skip_all => 'These tests require Test::Warn 0.10';
+    unless ( eval 'use Test::Warn 0.11; 1' )  {
+        plan skip_all => 'These tests require Test::Warn 0.11';
     }
     else {
         plan tests => 40;




More information about the Moose-commits mailing list