projects
/
gitmo/Moo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d86853e
)
fixup! fixup! add method modifiers test
Arthur Axel 'fREW' Schmidt [Tue, 3 Apr 2012 22:33:02 +0000 (17:33 -0500)]
xt/moose-method-modifiers.t
patch
|
blob
|
blame
|
history
diff --git
a/xt/moose-method-modifiers.t
b/xt/moose-method-modifiers.t
index
89c9891
..
5a6b796
100644
(file)
--- 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 { }
}