From: Dave Rolsky Date: Thu, 11 Feb 2010 15:27:48 +0000 (-0600) Subject: Require MX::AH 0.23+ for MX::AH tests X-Git-Tag: 0.13~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=050e7d2987389c02a51137c08895ab026a6f6a11;p=gitmo%2FMooseX-ClassAttribute.git Require MX::AH 0.23+ for MX::AH tests --- diff --git a/t/05-with-attribute-helpers-backcompat.t b/t/05-with-attribute-helpers-backcompat.t index f7bdad2..8605588 100644 --- a/t/05-with-attribute-helpers-backcompat.t +++ b/t/05-with-attribute-helpers-backcompat.t @@ -4,8 +4,8 @@ use warnings; use Test::More; BEGIN { - eval "use MooseX::AttributeHelpers 0.13;"; - plan skip_all => 'This test requires MooseX::AttributeHelpers 0.13+' + eval "use MooseX::AttributeHelpers 0.23;"; + plan skip_all => 'This test requires MooseX::AttributeHelpers 0.23+' if $@; }