Fix a warning
[gitmo/MooseX-Types.git] / t / regressions / 01-is_subtype_of.t
1 use strict;
2 use warnings;
3
4 use Test::More tests=>5;
5 use MooseX::Types;
6 use MooseX::Types::Moose qw(Any Item );
7
8
9 my $item = subtype as Item;
10
11 ok Item->equals('Item');
12 ok Item->equals(Item);
13
14 ok ( $item->is_subtype_of('Any'),
15   q[$item is subtype of 'Any']);
16
17 ok ( Item->is_subtype_of('Any'),
18   q[Item is subtype of 'Any']);
19
20 ok ( Item->is_subtype_of(Any),
21   q[Item is subtype of Any]);
22