projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
289ea8f
)
triggers no longer get a meta-object
Dave Rolsky [Fri, 20 Feb 2009 17:30:11 +0000 (17:30 +0000)]
t/020_attributes/020_trigger_and_coerce.t
patch
|
blob
|
blame
|
history
diff --git
a/t/020_attributes/020_trigger_and_coerce.t
b/t/020_attributes/020_trigger_and_coerce.t
index
5d102ba
..
208068e
100644
(file)
--- a/
t/020_attributes/020_trigger_and_coerce.t
+++ b/
t/020_attributes/020_trigger_and_coerce.t
@@
-27,7
+27,7
@@
use Test::Exception;
isa => 'Fake::DateTime',
coerce => 1,
trigger => sub {
- my ( $self, $val, $meta ) = @_;
+ my ( $self, $val ) = @_;
::pass('... trigger is being called');
::isa_ok($self->closing_date, 'Fake::DateTime');
::isa_ok($val, 'Fake::DateTime');