Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 006_util_type_reloading.t
@@ -1,17 +1,15 @@
 #!/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 lib 't/lib', 'lib';
 
-use Test::More;
+use Test::More tests => 4;
 use Test::Exception;
 
 
+
 $SIG{__WARN__} = sub { 0 };
 
 eval { require Foo; };
@@ -28,6 +26,4 @@ ok(!$@, '... loaded Bar successfully') || diag $@;
 delete $INC{'Bar.pm'};
 
 eval { require Bar; };
-ok(!$@, '... re-loaded Bar successfully') || diag $@;
-
-done_testing;
+ok(!$@, '... re-loaded Bar successfully') || diag $@;
\ No newline at end of file