every other file uses underscores
[gitmo/Moose.git] / t / 040_type_constraints / 030_class_subtypes.t
CommitLineData
9ceb576e 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
81e727db 6use Test::More tests => 18;
9ceb576e 7use Test::Exception;
8
81e727db 9use Moose::Util::TypeConstraints;
10use Moose::Meta::TypeConstraint;
11
9ceb576e 12
13## Create a subclass with a custom method
14
15{
16 package Test::Moose::Meta::TypeConstraint::AnySubType;
17 use Moose;
18 extends 'Moose::Meta::TypeConstraint';
19
20 sub my_custom_method {
21 return 1;
22 }
23}
24
81e727db 25my $Int = find_type_constraint('Int');
9ceb576e 26ok $Int, 'Got a good type contstraint';
27
28my $parent = Test::Moose::Meta::TypeConstraint::AnySubType->new({
29 name => "Test::Moose::Meta::TypeConstraint::AnySubType" ,
30 parent => $Int,
31});
32
33ok $parent, 'Created type constraint';
34ok $parent->check(1), 'Correctly passed';
35ok ! $parent->check('a'), 'correctly failed';
36ok $parent->my_custom_method, 'found the custom method';
37
81e727db 38my $subtype1 = subtype 'another_subtype' => as $parent;
9ceb576e 39
40ok $subtype1, 'Created type constraint';
41ok $subtype1->check(1), 'Correctly passed';
42ok ! $subtype1->check('a'), 'correctly failed';
43ok $subtype1->my_custom_method, 'found the custom method';
44
45
81e727db 46my $subtype2 = subtype 'another_subtype' => as $subtype1 => where { $_ < 10 };
9ceb576e 47
48ok $subtype2, 'Created type constraint';
49ok $subtype2->check(1), 'Correctly passed';
50ok ! $subtype2->check('a'), 'correctly failed';
51ok ! $subtype2->check(100), 'correctly failed';
52
81e727db 53ok $subtype2->my_custom_method, 'found the custom method';
54
55
56{
57 package Foo;
58
59 use Moose;
60}
61
62{
63 package Bar;
64
65 use Moose;
66
67 extends 'Foo';
68}
69
70{
71 package Baz;
72
73 use Moose;
74}
75
76my $foo = class_type 'Foo';
77my $isa_foo = subtype 'IsaFoo' => as $foo;
78
79ok $isa_foo, 'Created subtype of Foo type';
80ok $isa_foo->check( Foo->new ), 'Foo passes check';
81ok $isa_foo->check( Bar->new ), 'Bar passes check';
82ok ! $isa_foo->check( Baz->new ), 'Baz does not pass check';