From: Dave Rolsky Date: Mon, 12 Jul 2010 15:38:04 +0000 (-0500) Subject: Can't coerce a type that doesn't define a coercion. X-Git-Tag: 1.11~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7246414579efb9f5f738e72ebb3f655375fe8b3e;hp=4beacd39f48c283cd92d9c6231b97e5413076e14;p=gitmo%2FMoose.git Can't coerce a type that doesn't define a coercion. --- diff --git a/t/040_type_constraints/009_union_types_and_coercions.t b/t/040_type_constraints/009_union_types_and_coercions.t index 4066ff8..e7071f2 100644 --- a/t/040_type_constraints/009_union_types_and_coercions.t +++ b/t/040_type_constraints/009_union_types_and_coercions.t @@ -161,17 +161,6 @@ use Test::Requires { use Moose; use Moose::Util::TypeConstraints; - has nothing => ( - is => 'ro', - isa => 'Undef | Undef', - ); - - has nothing2 => ( - is => 'ro', - isa => 'Undef | Undef', - coerce => 1, - ); - subtype 'Coerced' => as 'ArrayRef'; coerce 'Coerced' => from 'Value' @@ -185,25 +174,16 @@ use Test::Requires { } { - throws_ok { Foo->new( nothing => 1 ) } - qr/\QValidation failed for 'Undef|Undef' with value 1/, - 'Cannot pass defined value for nothing attribute'; - - throws_ok { Foo->new( nothing2 => 1 ) } - qr/\QValidation failed for 'Undef|Undef' with value 1/, - 'Cannot pass defined value for nothing2 attribute'; - - { - my $foo; - lives_ok { $foo = Foo->new( carray => 1 ) } - 'Can pass non-ref value for carray'; - is_deeply( - $foo->carray, [1], - 'carray was coerced to an array ref' - ); - } + my $foo; + lives_ok { $foo = Foo->new( carray => 1 ) } + 'Can pass non-ref value for carray'; + is_deeply( + $foo->carray, [1], + 'carray was coerced to an array ref' + ); - throws_ok { Foo->new( carray => {} ) } qr/\QValidation failed for 'Coerced|Coerced' with value \E(?!undef)/, + throws_ok { Foo->new( carray => {} ) } + qr/\QValidation failed for 'Coerced|Coerced' with value \E(?!undef)/, 'Cannot pass a hash ref for carray attribute, and hash ref is not coerced to an undef'; }