X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F006-unimport.t;h=a3c74db2258dc9bc9640525bde253eb8d354b8d4;hp=fa7259b89698e9370797d1552ab2ec9da6d6c927;hb=3a63a2e7ef8fbac5f61eab04baecbf5d19374b83;hpb=e0396a57ff4663622ba6862a3039d05c2514fe4b diff --git a/t/006-unimport.t b/t/006-unimport.t index fa7259b..a3c74db 100644 --- a/t/006-unimport.t +++ b/t/006-unimport.t @@ -29,9 +29,7 @@ do { }; ok(!Foo->can('has'), "has keyword is unimported"); -TODO: { - local $TODO = "fixing this may require a Sub::Identify dep"; - ok(Foo->can('extends'), "extends method is NOT unimported"); - is(eval { Foo->extends }, "good", "extends method is ours, not the extends keyword"); -}; + +ok(Foo->can('extends'), "extends method is NOT unimported"); +is(eval { Foo->extends }, "good", "extends method is ours, not the extends keyword");