From: Arthur Axel 'fREW' Schmidt Date: Tue, 3 Apr 2012 22:32:28 +0000 (-0500) Subject: fixup! add method modifiers test X-Git-Tag: v0.009_015~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d86853e0debad21bad01d268a3f7429d6aa902c3;p=gitmo%2FMoo.git fixup! add method modifiers test --- diff --git a/xt/moose-method-modifiers.t b/xt/moose-method-modifiers.t index af9492d..89c9891 100644 --- a/xt/moose-method-modifiers.t +++ b/xt/moose-method-modifiers.t @@ -4,7 +4,7 @@ use Test::More; use Moo::HandleMoose; { - package ModifyFoo; + package FooAttr; use Moo::Role; our $before_ran = 0; @@ -21,6 +21,7 @@ use Moo::HandleMoose; package Bar; use Moose; + with 'FooAttr'; sub foo { } }