Fix issue reported by ArjenL in #moose
Tomas Doran (t0m) [Wed, 1 Jul 2009 12:38:45 +0000 (13:38 +0100)]
Changes
t/201-squirrel.t
t/202-squirrel-role.t

diff --git a/Changes b/Changes
index b715925..5d08753 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for Mouse
 
 0.26
+    * Fix failing tests by requiring a newer Moose in that test (t0m)
 
 0.25 Fri Jun 19 12:05:42 2009
     * Fix SIGNATURE (reported by daxim) ... by removing it :)
index c2fb73b..daeed22 100644 (file)
@@ -27,7 +27,7 @@ do {
 # affecting its definition
 
 BEGIN {
-    plan skip_all => "Moose required for this test" unless eval { require Moose };
+    plan skip_all => "Moose 0.68 required for this test" unless eval { require Moose && Moose->VERSION('0.68') };
     plan tests => 12;
 }
 
index 5c70361..dd6f7d9 100644 (file)
@@ -22,7 +22,7 @@ do {
 # affecting its definition
 
 BEGIN {
-    plan skip_all => "Moose required for this test" unless eval { require Moose::Role };
+    plan skip_all => "Moose 0.68 required for this test" unless eval { require Moose::Role && Moose::Role->VERSION('0.68') };
     plan tests => 6;
 }