X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F000-recipes%2F002_schwartz_tutorial.t;h=b82572bfe5cdff2af42a8e6ad442d997d2ece44b;hp=c15003ef3d78cace9e1660d030ddcdc7d268763e;hb=43e6a50b260b096a34b0c46da87296bd220c4184;hpb=3fbade18e33525b80713bec245f05b5efd0b1fc3 diff --git a/t/000-recipes/002_schwartz_tutorial.t b/t/000-recipes/002_schwartz_tutorial.t index c15003e..b82572b 100755 --- a/t/000-recipes/002_schwartz_tutorial.t +++ b/t/000-recipes/002_schwartz_tutorial.t @@ -12,16 +12,6 @@ use strict; use warnings; use Test::More; -BEGIN { - plan skip_all => - "This test requires Class::Method::Modifiers or Class::Method::Modifiers::Fast" - unless eval { - require Class::Method::Modifiers::Fast; - } or eval { - require Class::Method::Modifiers; - }; -} - # functions to capture the output of the tutorial our $DUMMY_STDOUT = ""; sub dprint { $DUMMY_STDOUT .= join "", @_ };