projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
ef42c7f
)
Coerce a type that won't fail us later (damn you Moose)
Shawn M Moore [Mon, 22 Dec 2008 03:27:52 +0000 (
03:27
+0000)]
t/800_shikabased/002-coerce_multi_class.t
patch
|
blob
|
blame
|
history
diff --git
a/t/800_shikabased/002-coerce_multi_class.t
b/t/800_shikabased/002-coerce_multi_class.t
index
4fb0128
..
b2d26b8
100644
(file)
--- a/
t/800_shikabased/002-coerce_multi_class.t
+++ b/
t/800_shikabased/002-coerce_multi_class.t
@@
-68,9
+68,9
@@
eval {
package Request;
use Mouse::Util::TypeConstraints;
- coerce 'Headers' =>
+ coerce 'Int' =>
from 'XXX' => via {
- Request::Headers->new(%{ $_ });
+ 1
},
;
};