Detabify Changes
[gitmo/MooseX-Types.git] / t / regressions / 01-is_subtype_of.t
index 1f2f000..87e5382 100644 (file)
@@ -1,12 +1,15 @@
 use strict;
 use warnings;
 
-use Test::More tests=>6;
+use Test::More tests=>5;
 use MooseX::Types;
 use MooseX::Types::Moose qw(Any Item );
 
 
-my $item = subtype as 'Item';
+my $item = subtype as Item;
+
+ok Item->equals('Item');
+ok Item->equals(Item);
 
 ok ( $item->is_subtype_of('Any'),
   q[$item is subtype of 'Any']);
@@ -14,18 +17,6 @@ ok ( $item->is_subtype_of('Any'),
 ok ( Item->is_subtype_of('Any'),
   q[Item is subtype of 'Any']);
 
-ok ( $item->is_subtype_of(Any),
-  q[Item is subtype of Any]);
-
 ok ( Item->is_subtype_of(Any),
   q[Item is subtype of Any]);
 
-my $any = subtype as 'Any';
-
-ok ( $item->is_subtype_of($any),
-  q[$item is subtype of $any]);
-
-ok ( Item->is_subtype_of($any),
-  q[Item is subtype of $any]);
-
-