Conflict with Fey 0.36
[gitmo/Moose.git] / t / 060_compat / 003_foreign_inheritence.t
index 14649c8..0fdcb9b 100644 (file)
@@ -3,11 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 6;
+use Test::More;
 use Test::Exception;
 
 
-
 {
 
     package Elk;
@@ -42,8 +41,6 @@ use Test::Exception;
     __PACKAGE__->meta->add_attribute(
         'squeegee' => ( accessor => 'squeegee' ) );
 
-    __PACKAGE__->meta->make_immutable(inline_constructor => 0);
-
     package Old::Bucket::Nose;
 
     # see http://www.moosefoundation.org/moose_facts.htm
@@ -92,3 +89,4 @@ lives_ok {
 }
 'Can subclass the same non-Moose class twice with different metaclasses';
 
+done_testing;