From: Shawn M Moore Date: Tue, 10 Feb 2009 01:31:06 +0000 (+0000) Subject: Skip these tests if you have an old Moose X-Git-Tag: 0.19~32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=144b1d97cffae7a7a6e4e913171cee2a44cffcdd;p=gitmo%2FMouse.git Skip these tests if you have an old Moose --- diff --git a/t/800_shikabased/013-compatibility-get_method_list.t b/t/800_shikabased/013-compatibility-get_method_list.t index 8e85b84..2b32960 100644 --- a/t/800_shikabased/013-compatibility-get_method_list.t +++ b/t/800_shikabased/013-compatibility-get_method_list.t @@ -1,7 +1,7 @@ use strict; use warnings; use Test::More; -plan skip_all => "This test requires Moose" unless eval "require Moose; 1;"; +plan skip_all => "This test requires Moose 0.68" unless eval "require Moose 0.68; 1;"; plan tests => 6; test($_) for qw/Moose Mouse/;