X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F040_type_constraints%2F011_container_type_constraint.t;h=10b8ec9073b51bea7ff7f651c1f443dcd595f494;hb=2b6c2a5c2f6cc6abd7285dd83287e64188f41f6d;hp=ea3be878df91d647295884c361ac847c34350627;hpb=e59a5c292a333cac504b65ebd4bba20b5e98d796;p=gitmo%2FMoose.git diff --git a/t/040_type_constraints/011_container_type_constraint.t b/t/040_type_constraints/011_container_type_constraint.t index ea3be87..10b8ec9 100644 --- a/t/040_type_constraints/011_container_type_constraint.t +++ b/t/040_type_constraints/011_container_type_constraint.t @@ -3,23 +3,22 @@ use strict; use warnings; -use Test::More no_plan => 1; +use Test::More tests => 24; use Test::Exception; -BEGIN { - use_ok('Moose'); +BEGIN { use_ok('Moose::Util::TypeConstraints'); - use_ok('Moose::Meta::TypeConstraint::Container'); + use_ok('Moose::Meta::TypeConstraint::Parameterized'); } # Array of Ints -my $array_of_ints = Moose::Meta::TypeConstraint::Container->new( +my $array_of_ints = Moose::Meta::TypeConstraint::Parameterized->new( name => 'ArrayRef[Int]', parent => find_type_constraint('ArrayRef'), - container_type => find_type_constraint('Int'), + type_parameter => find_type_constraint('Int'), ); -isa_ok($array_of_ints, 'Moose::Meta::TypeConstraint::Container'); +isa_ok($array_of_ints, 'Moose::Meta::TypeConstraint::Parameterized'); isa_ok($array_of_ints, 'Moose::Meta::TypeConstraint'); ok($array_of_ints->check([ 1, 2, 3, 4 ]), '... [ 1, 2, 3, 4 ] passed successfully'); @@ -32,12 +31,12 @@ ok(!$array_of_ints->check(sub { () }), '... sub { () } failed successfully'); # Hash of Ints -my $hash_of_ints = Moose::Meta::TypeConstraint::Container->new( +my $hash_of_ints = Moose::Meta::TypeConstraint::Parameterized->new( name => 'HashRef[Int]', parent => find_type_constraint('HashRef'), - container_type => find_type_constraint('Int'), + type_parameter => find_type_constraint('Int'), ); -isa_ok($hash_of_ints, 'Moose::Meta::TypeConstraint::Container'); +isa_ok($hash_of_ints, 'Moose::Meta::TypeConstraint::Parameterized'); isa_ok($hash_of_ints, 'Moose::Meta::TypeConstraint'); ok($hash_of_ints->check({ one => 1, two => 2, three => 3 }), '... { one => 1, two => 2, three => 3 } passed successfully'); @@ -50,12 +49,12 @@ ok(!$hash_of_ints->check(sub { () }), '... sub { () } failed successfully'); # Array of Array of Ints -my $array_of_array_of_ints = Moose::Meta::TypeConstraint::Container->new( +my $array_of_array_of_ints = Moose::Meta::TypeConstraint::Parameterized->new( name => 'ArrayRef[ArrayRef[Int]]', parent => find_type_constraint('ArrayRef'), - container_type => $array_of_ints, + type_parameter => $array_of_ints, ); -isa_ok($array_of_array_of_ints, 'Moose::Meta::TypeConstraint::Container'); +isa_ok($array_of_array_of_ints, 'Moose::Meta::TypeConstraint::Parameterized'); isa_ok($array_of_array_of_ints, 'Moose::Meta::TypeConstraint'); ok($array_of_array_of_ints->check( @@ -65,3 +64,10 @@ ok(!$array_of_array_of_ints->check( [[ 1, 2, 3 ], [ qw/foo bar/ ]] ), '... [[ 1, 2, 3 ], [ qw/foo bar/ ]] failed successfully'); +{ + my $anon_type = Moose::Util::TypeConstraints::find_or_parse_type_constraint('ArrayRef[Foo]'); + isa_ok( $anon_type, 'Moose::Meta::TypeConstraint::Parameterized' ); + + my $param_type = $anon_type->type_parameter; + isa_ok( $param_type, 'Moose::Meta::TypeConstraint::Class' ); +}