From: Shawn M Moore Date: Thu, 5 Feb 2009 21:25:52 +0000 (+0000) Subject: Upgrading Moose fixed test failures in these files for somebody, so X-Git-Tag: 0.19~38 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=f91c9c099c234823ea992198c845e5bb066fdc7a Upgrading Moose fixed test failures in these files for somebody, so depend on later versions (not sure what changed; maybe CMOP fix?) --- diff --git a/t/500_moose_extends_mouse.t b/t/500_moose_extends_mouse.t index cb99d00..6264900 100644 --- a/t/500_moose_extends_mouse.t +++ b/t/500_moose_extends_mouse.t @@ -6,7 +6,7 @@ use warnings; use Test::More; use Test::Exception; BEGIN { - plan skip_all => "Moose required for this test" unless eval { require Moose && Moose->VERSION('0.59') }; + plan skip_all => "Moose required for this test" unless eval { require Moose && Moose->VERSION('0.68') }; plan tests => 27; } diff --git a/t/501_moose_coerce_mouse.t b/t/501_moose_coerce_mouse.t index 9633b0e..1c459c6 100644 --- a/t/501_moose_coerce_mouse.t +++ b/t/501_moose_coerce_mouse.t @@ -6,7 +6,7 @@ use warnings; use Test::More; use Test::Exception; BEGIN { - plan skip_all => "Moose required for this test" unless eval { require Moose && Moose->VERSION('0.59') }; + plan skip_all => "Moose required for this test" unless eval { require Moose && Moose->VERSION('0.68') }; plan tests => 5; }