X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F000-recipes%2Fmoose_cookbook_basics_recipe4.t;h=7f8f907da9c64da9073bcb7e01f9452061c8ac41;hp=c7f00899431cef045128d093a058881347b527c3;hb=43e6a50b260b096a34b0c46da87296bd220c4184;hpb=3fbade18e33525b80713bec245f05b5efd0b1fc3 diff --git a/t/000-recipes/moose_cookbook_basics_recipe4.t b/t/000-recipes/moose_cookbook_basics_recipe4.t index c7f0089..7f8f907 100644 --- a/t/000-recipes/moose_cookbook_basics_recipe4.t +++ b/t/000-recipes/moose_cookbook_basics_recipe4.t @@ -3,17 +3,12 @@ use strict; use Test::More; BEGIN{ - if(eval{ require Class::Method::Modifiers::Fast } || eval{ require Class::Method::Modifiers }){ - eval 'use Regexp::Common; use Locale::US;'; - if ($@) { - plan skip_all => 'Regexp::Common & Locale::US required for this test'; - } - else{ - plan 'no_plan'; - } + eval 'use Regexp::Common; use Locale::US;'; + if ($@) { + plan skip_all => 'Regexp::Common & Locale::US required for this test'; } else{ - plan skip_all => 'This test requires Class::Method::Modifiers(::Fast)?'; + plan 'no_plan'; } }