Remove some TODO tags
Fuji, Goro [Sat, 25 Sep 2010 07:08:25 +0000 (16:08 +0900)]
t/030_roles/001_meta_role.t
t/030_roles/042_compose_overloading.t
t/100_bugs/025_universal_methods_wrappable.t
t/100_bugs/026_create_anon_recursion.t

index 8b642c3..143cf9f 100644 (file)
@@ -59,7 +59,6 @@ is_deeply(
 ok($foo_role->has_attribute('bar'), '... FooRole does have the bar attribute');
 
 {
-    local $TODO = 'Mouse does not support role attributes';
     is_deeply(
         join('|', %{$foo_role->get_attribute('bar')}),
         join('|', %{+{ is => 'rw', isa => 'Foo' }}),
index b79fbde..2473a24 100644 (file)
@@ -22,7 +22,4 @@ use Test::More tests => 1;
 
 my $bar = Bar->new;
 
-TODO: {
-    local $TODO = "the special () method isn't properly composed into the class";
-    is("$bar", 42, 'overloading can be composed');
-}
+is("$bar", 42, 'overloading can be composed');
index a7507db..8e24969 100644 (file)
@@ -23,8 +23,6 @@ use Test::More;
 
     use Test::More; # for $TODO
 
-    local $TODO = 'UNIVERSAL methods should be wrappable';
-
     ::lives_ok { with 'FakeBar' } 'applied role';
 
     my $foo = Foo->new;
index c5f4562..33ebf27 100644 (file)
@@ -9,13 +9,7 @@ use Test::Exception;
 
 use Mouse::Meta::Class;
 
-$SIG{__WARN__} = sub { die if shift =~ /recurs/ };
-
-TODO:
 {
-    local $TODO
-        = 'Loading Mouse::Meta::Class without loading Mouse.pm causes weird problems';
-
     my $meta;
     lives_ok {
         $meta = Mouse::Meta::Class->create_anon_class(