make github the primary repository
[gitmo/Moose.git] / t / todo_tests / immutable_n_around.t
index c633bf5..3e3ca6b 100644 (file)
@@ -39,12 +39,10 @@ use Test::More;
 my @classes = qw(Foo Bar Gorch Zoink);
 
 tests: {
- TODO: {
     is( Foo->new->foo, undef, "base class (" . (Foo->meta->is_immutable ? "immutable" : "mutable") . ")" );
     is( Bar->new->foo, 42, "around new called on Bar->new (" . (Bar->meta->is_immutable ? "immutable" : "mutable") . ")"  );
     is( Gorch->new->foo, 42, "around new called on Gorch->new (" . (Gorch->meta->is_immutable ? "immutable" : "mutable") . ")"  );
     is( Zoink->new->foo, 42, "around new called Zoink->new (" . (Zoink->meta->is_immutable ? "immutable" : "mutable") . ")"  );
-    }
 
     if ( @classes ) {
         local $SIG{__WARN__} = sub {};