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