Fix tests that I broke with my reformatting 0.80
Dave Rolsky [Sat, 6 Jun 2009 19:50:58 +0000 (14:50 -0500)]
t/100_bugs/025_universal_methods_wrappable.t

index e7c4acb..4b5a134 100644 (file)
@@ -18,13 +18,12 @@ use Test::More tests => 2;
     package Foo;
     use Moose;
 
- TODO:
-    {
-        local $TODO = 'UNIVERSAL methods should be wrappable';
+    use Test::More; # for $TODO
 
-        lives_ok { with 'FakeBar' } 'applied role';
+    local $TODO = 'UNIVERSAL methods should be wrappable';
 
-        my $foo = Foo->new;
-        isa_ok $foo, 'Bar';
-    }
+    ::lives_ok { with 'FakeBar' } 'applied role';
+
+    my $foo = Foo->new;
+    ::isa_ok $foo, 'Bar';
 }