Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 034_duck_types.t
similarity index 86%
rename from t/040_type_constraints/034_duck_types.t
rename to t/040_type_constraints/failing/034_duck_types.t
index 5eb1093..e5b467b 100644 (file)
@@ -1,12 +1,8 @@
 #!/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;
-$TODO = q{Mouse is not yet completed};
+use Test::More tests => 5;
 use Test::Exception;
 
 {
@@ -82,5 +78,3 @@ lives_ok { DucktypeTest->new( duck => RubberDuck->new ) }
 
 # try with the other constraint form
 lives_ok { DucktypeTest->new( other_swan => Swan->new ) } 'but a Swan can honk';
-
-done_testing;