fixed bug, problem of coercer feature is moose compat
[gitmo/Mouse.git] / lib / Mouse / Object.pm
index 623fa64..a49d08c 100644 (file)
@@ -3,7 +3,7 @@ package Mouse::Object;
 use strict;
 use warnings;
 
-use Scalar::Util qw/weaken/;
+use Mouse::Util qw/weaken/;
 use Carp 'confess';
 
 sub new {
@@ -19,6 +19,8 @@ sub new {
         my $default;
 
         if (defined($from) && exists($args->{$from})) {
+            $args->{$from} = $attribute->coerce_constraint($args->{$from})
+                if $attribute->should_coerce;
             $attribute->verify_type_constraint($args->{$from})
                 if $attribute->has_type_constraint;
 
@@ -42,6 +44,8 @@ sub new {
                                   ? $default->()
                                   : $default;
 
+                    $value = $attribute->coerce_constraint($value)
+                        if $attribute->should_coerce;
                     $attribute->verify_type_constraint($value)
                         if $attribute->has_type_constraint;