projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
a7d31de
)
Add missing is => 'bare' to a test
gfx [Thu, 17 Sep 2009 01:04:59 +0000 (10:04 +0900)]
t/400-define-role.t
patch
|
blob
|
blame
|
history
diff --git
a/t/400-define-role.t
b/t/400-define-role.t
index
7202797
..
1441463
100644
(file)
--- a/
t/400-define-role.t
+++ b/
t/400-define-role.t
@@
-44,7
+44,7
@@
lives_ok {
package Role;
use Mouse::Role;
- has 'foo';
+ has 'foo' => (is => 'bare');
no Mouse::Role;
};