From: Shawn M Moore Date: Sun, 14 Jun 2009 21:23:55 +0000 (-0400) Subject: This fails with older Moose. Not sure which version, but it's just a test X-Git-Tag: 0.24~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=7d987c56aa22bb6f6a694783bd7158ef37fad85f This fails with older Moose. Not sure which version, but it's just a test --- diff --git a/t/800_shikabased/013-compatibility-get_method_list.t b/t/800_shikabased/013-compatibility-get_method_list.t index f7b6dfa..41d886e 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 0.68" unless eval { require Moose; Moose->VERSION(0.68); }; +plan skip_all => "This test requires Moose 0.81" unless eval { require Moose; Moose->VERSION(0.81); }; plan tests => 6; test($_) for qw/Moose Mouse/;