From: Shawn M Moore Date: Tue, 28 Oct 2008 23:23:27 +0000 (+0000) Subject: Require Moose 0.59 for these tests (not sure when this was fixed; and it's only for... X-Git-Tag: 0.19~167 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=693a0d062fb308eae5be5025247fb1fd05bb89f2;p=gitmo%2FMouse.git Require Moose 0.59 for these tests (not sure when this was fixed; and it's only for a test we know now works :)) --- diff --git a/t/500_moose_extends_mouse.t b/t/500_moose_extends_mouse.t index 7c4aa56..b4bff06 100644 --- a/t/500_moose_extends_mouse.t +++ b/t/500_moose_extends_mouse.t @@ -5,7 +5,7 @@ use warnings; use Test::More; BEGIN { - plan skip_all => "Moose required for this test" unless eval { require Moose }; + plan skip_all => "Moose 0.59 required for this test" unless eval { require Moose 0.59 }; plan tests => 27; }