Get rid of all the bogus uses of use_ok still lurking in the code
[gitmo/Moose.git] / t / type_constraints / subtyping_union_types.t
CommitLineData
8de73ff1 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
a28e50e4 6use Test::More;
b10dde3a 7use Test::Fatal;
8de73ff1 8
28fdde7f 9use Moose::Util::TypeConstraints;
8de73ff1 10
b10dde3a 11is( exception {
8de73ff1 12 subtype 'MyCollections' => as 'ArrayRef | HashRef';
b10dde3a 13}, undef, '... created the subtype special okay' );
8de73ff1 14
15{
16 my $t = find_type_constraint('MyCollections');
17 isa_ok($t, 'Moose::Meta::TypeConstraint');
18
19 is($t->name, 'MyCollections', '... name is correct');
20
21 my $p = $t->parent;
22 isa_ok($p, 'Moose::Meta::TypeConstraint::Union');
23 isa_ok($p, 'Moose::Meta::TypeConstraint');
24
eb4c4e82 25 is($p->name, 'ArrayRef|HashRef', '... parent name is correct');
8de73ff1 26
27 ok($t->check([]), '... validated it correctly');
d03bd989 28 ok($t->check({}), '... validated it correctly');
8de73ff1 29 ok(!$t->check(1), '... validated it correctly');
30}
31
b10dde3a 32is( exception {
d03bd989 33 subtype 'MyCollectionsExtended'
eb4c4e82 34 => as 'ArrayRef|HashRef'
8de73ff1 35 => where {
36 if (ref($_) eq 'ARRAY') {
37 return if scalar(@$_) < 2;
38 }
39 elsif (ref($_) eq 'HASH') {
d03bd989 40 return if scalar(keys(%$_)) < 2;
8de73ff1 41 }
42 1;
43 };
b10dde3a 44}, undef, '... created the subtype special okay' );
8de73ff1 45
46{
47 my $t = find_type_constraint('MyCollectionsExtended');
48 isa_ok($t, 'Moose::Meta::TypeConstraint');
49
50 is($t->name, 'MyCollectionsExtended', '... name is correct');
51
52 my $p = $t->parent;
53 isa_ok($p, 'Moose::Meta::TypeConstraint::Union');
54 isa_ok($p, 'Moose::Meta::TypeConstraint');
55
eb4c4e82 56 is($p->name, 'ArrayRef|HashRef', '... parent name is correct');
8de73ff1 57
58 ok(!$t->check([]), '... validated it correctly');
d03bd989 59 ok($t->check([1, 2]), '... validated it correctly');
60
61 ok(!$t->check({}), '... validated it correctly');
62 ok($t->check({ one => 1, two => 2 }), '... validated it correctly');
63
8de73ff1 64 ok(!$t->check(1), '... validated it correctly');
65}
66
a28e50e4 67done_testing;