From: Fuji, Goro Date: Sat, 25 Sep 2010 07:08:25 +0000 (+0900) Subject: Remove some TODO tags X-Git-Tag: 0.72~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=475ddfa7a25848f2e73be6f0fc156a57315bcc0d;p=gitmo%2FMouse.git Remove some TODO tags --- diff --git a/t/030_roles/001_meta_role.t b/t/030_roles/001_meta_role.t index 8b642c3..143cf9f 100644 --- a/t/030_roles/001_meta_role.t +++ b/t/030_roles/001_meta_role.t @@ -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' }}), diff --git a/t/030_roles/042_compose_overloading.t b/t/030_roles/042_compose_overloading.t index b79fbde..2473a24 100644 --- a/t/030_roles/042_compose_overloading.t +++ b/t/030_roles/042_compose_overloading.t @@ -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'); diff --git a/t/100_bugs/025_universal_methods_wrappable.t b/t/100_bugs/025_universal_methods_wrappable.t index a7507db..8e24969 100644 --- a/t/100_bugs/025_universal_methods_wrappable.t +++ b/t/100_bugs/025_universal_methods_wrappable.t @@ -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; diff --git a/t/100_bugs/026_create_anon_recursion.t b/t/100_bugs/026_create_anon_recursion.t index c5f4562..33ebf27 100644 --- a/t/100_bugs/026_create_anon_recursion.t +++ b/t/100_bugs/026_create_anon_recursion.t @@ -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(