From: Dave Rolsky <autarch@urth.org>
Date: Sat, 6 Jun 2009 19:50:58 +0000 (-0500)
Subject: Fix tests that I broke with my reformatting
X-Git-Tag: 0.80^0
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a28643a3d80d6d9d12ad5e5a51b303b8d037e6c5;p=gitmo%2FMoose.git

Fix tests that I broke with my reformatting
---

diff --git a/t/100_bugs/025_universal_methods_wrappable.t b/t/100_bugs/025_universal_methods_wrappable.t
index e7c4acb..4b5a134 100644
--- a/t/100_bugs/025_universal_methods_wrappable.t
+++ b/t/100_bugs/025_universal_methods_wrappable.t
@@ -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';
 }