Regenerate test files
[gitmo/Mouse.git] / t-failing / 040_type_constraints / 004_util_find_type_constraint.t
@@ -1,9 +1,13 @@
 #!/usr/bin/perl
+# This is automatically generated by author/import-moose-test.pl.
+# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
+use t::lib::MooseCompat;
 
 use strict;
 use warnings;
 
-use Test::More tests => 17;
+use Test::More;
+$TODO = q{Mouse is not yet completed};
 use Test::Exception;
 
 BEGIN {
@@ -27,6 +31,7 @@ foreach my $type_name (qw(
                 CodeRef
                 RegexpRef
                 Object
+                    Role
     )) {
     is(find_type_constraint($type_name)->name,
        $type_name,
@@ -35,3 +40,5 @@ foreach my $type_name (qw(
 
 # TODO:
 # add tests for is_subtype_of which confirm the hierarchy
+
+done_testing;