From: Shawn M Moore Date: Tue, 10 Feb 2009 01:29:04 +0000 (+0000) Subject: Describe which versions of Moose we need when we skip these tests X-Git-Tag: 0.19~33 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=097f8404eb0dbe3d3f256c97eb76ca01ffac79ef Describe which versions of Moose we need when we skip these tests --- diff --git a/t/500_moose_extends_mouse.t b/t/500_moose_extends_mouse.t index 6264900..4a79e7d 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.68') }; + plan skip_all => "Moose 0.68 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 1c459c6..2165482 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.68') }; + plan skip_all => "Moose 0.68 required for this test" unless eval { require Moose && Moose->VERSION('0.68') }; plan tests => 5; }