X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F019_build.t;h=684443a6626f4bb93cf4f4e5f30f198305f22e5b;hb=92d87891cfa6391f35fcde0dfc09ea00635525e4;hp=1a7a402d839799fb77dcc721b53bb4c788d6b84d;hpb=ad022aac12ce95ee336af9dde0758ae98037f3ab;p=gitmo%2FMouse.git diff --git a/t/030_roles/019_build.t b/t/030_roles/019_build.t old mode 100755 new mode 100644 index 1a7a402..684443a --- a/t/030_roles/019_build.t +++ b/t/030_roles/019_build.t @@ -6,10 +6,6 @@ BEGIN { eval "use Test::Output;"; plan skip_all => "Test::Output is required for this test" if $@; - unless(eval { require Class::Method::Modifiers::Fast } or eval{ require Class::Method::Modifiers }){ - plan skip_all => "Class::Method::Modifiers(::Fast)? is required for this test" if $@; - } - plan tests => 8; } @@ -45,7 +41,7 @@ do { use Mouse; ::stderr_is { - with 'TestRole' => { excludes => 'BUILD' }; + with 'TestRole' => { -excludes => 'BUILD' }; } ''; sub BUILD { push @CALLS, 'ExplicitClassWithBUILD::BUILD' }