Regenerate test files
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 002_util_type_constraints_export.t
diff --git a/t/040_type_constraints/failing/002_util_type_constraints_export.t b/t/040_type_constraints/failing/002_util_type_constraints_export.t
deleted file mode 100644 (file)
index 5d5612c..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Test::More tests => 4;
-use Test::Exception;
-
-{
-    package Foo;
-
-    use Mouse::Util::TypeConstraints;
-
-    eval {
-        type MyRef => where { ref($_) };
-    };
-    ::ok( !$@, '... successfully exported &type to Foo package' );
-
-    eval {
-        subtype MyArrayRef => as MyRef => where { ref($_) eq 'ARRAY' };
-    };
-    ::ok( !$@, '... successfully exported &subtype to Foo package' );
-
-    Mouse::Util::TypeConstraints->export_type_constraints_as_functions();
-
-    ::ok( MyRef( {} ), '... Ref worked correctly' );
-    ::ok( MyArrayRef( [] ), '... ArrayRef worked correctly' );
-}