Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 010_basics / 016_load_into_main.t
diff --git a/t/010_basics/016_load_into_main.t b/t/010_basics/016_load_into_main.t
deleted file mode 100644 (file)
index 6e8de44..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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;
-use Test::Exception;
-
-lives_ok {
-    eval 'use Mouse';
-} "export to main";
-
-isa_ok( main->meta, "Mouse::Meta::Class" );
-
-isa_ok( main->new, "main");
-isa_ok( main->new, "Mouse::Object" );
-
-done_testing;