From: Tokuhiro Matsuno Date: Mon, 21 Sep 2009 03:07:20 +0000 (+0900) Subject: this test fails with older moose X-Git-Tag: 0.32~28^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=33cc81a8f6f77ac395491d9824380290a80a23d9 this test fails with older moose --- diff --git a/t/800_shikabased/013-compatibility-get_method_list.t b/t/800_shikabased/013-compatibility-get_method_list.t index 1fd9a2f..735d5c3 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.81" unless eval { require Moose; Moose->VERSION(0.81); }; +plan skip_all => "This test requires Moose 0.91" unless eval { require Moose; Moose->VERSION(0.91); }; plan tests => 6; test($_) for qw/Moose Mouse/;