Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 500_test_moose / 004_test_moose_meta_ok.t
diff --git a/t/500_test_moose/004_test_moose_meta_ok.t b/t/500_test_moose/004_test_moose_meta_ok.t
deleted file mode 100644 (file)
index dc3141e..0000000
+++ /dev/null
@@ -1,36 +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::Builder::Tester;
-use Test::More;
-
-BEGIN {
-  use_ok('Test::Mouse');
-}
-
-{
-    package Foo;
-    use Mouse;
-}
-
-{
-    package Bar;
-}
-
-test_out('ok 1 - ... meta_ok(Foo) passes');
-
-meta_ok('Foo', '... meta_ok(Foo) passes');
-
-test_out ('not ok 2 - ... meta_ok(Bar) fails');
-test_fail (+2);
-
-meta_ok('Bar', '... meta_ok(Bar) fails');
-
-test_test ('meta_ok');
-
-done_testing;