Cleanup failing tests
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 006_util_type_reloading.t
diff --git a/t/040_type_constraints/failing/006_util_type_reloading.t b/t/040_type_constraints/failing/006_util_type_reloading.t
deleted file mode 100644 (file)
index 4cde153..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use lib 't/lib', 'lib';
-
-use Test::More tests => 4;
-use Test::Exception;
-
-
-
-$SIG{__WARN__} = sub { 0 };
-
-eval { require Foo; };
-ok(!$@, '... loaded Foo successfully') || diag $@;
-
-delete $INC{'Foo.pm'};
-
-eval { require Foo; };
-ok(!$@, '... re-loaded Foo successfully') || diag $@;
-
-eval { require Bar; };
-ok(!$@, '... loaded Bar successfully') || diag $@;
-
-delete $INC{'Bar.pm'};
-
-eval { require Bar; };
-ok(!$@, '... re-loaded Bar successfully') || diag $@;
\ No newline at end of file