Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 020_attributes / 034_bad_coerce.t
diff --git a/t/020_attributes/034_bad_coerce.t b/t/020_attributes/034_bad_coerce.t
deleted file mode 100644 (file)
index 6df64de..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-use strict;
-# 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 warnings;
-
-use Test::More;
-
-use Test::Requires {
-    'Test::Output' => '0.01', # skip all if not installed
-};
-
-{
-    package Foo;
-
-    use Mouse;
-
-    ::stderr_like{ has foo => (
-            is     => 'ro',
-            isa    => 'Str',
-            coerce => 1,
-        );
-        }
-        qr/\QYou cannot coerce an attribute (foo) unless its type (Str) has a coercion/,
-        'Cannot coerce unless the type has a coercion';
-
-    ::stderr_like{ has bar => (
-            is     => 'ro',
-            isa    => 'Str',
-            coerce => 1,
-        );
-        }
-        qr/\QYou cannot coerce an attribute (bar) unless its type (Str) has a coercion/,
-        'Cannot coerce unless the type has a coercion - different attribute';
-}
-
-done_testing;