X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F006-unimport.t;h=fa7259b89698e9370797d1552ab2ec9da6d6c927;hb=b57f7bae1aa14a25dba1289796fa6fd3c4d9a3f2;hp=57b0a6265be8a4e88a45ae64f3d5aee149abb7e3;hpb=df5525b435545379a78a35c54e73cd68602f80ed;p=gitmo%2FMouse.git diff --git a/t/006-unimport.t b/t/006-unimport.t index 57b0a62..fa7259b 100644 --- a/t/006-unimport.t +++ b/t/006-unimport.t @@ -29,6 +29,9 @@ do { }; ok(!Foo->can('has'), "has keyword is unimported"); -ok(Foo->can('extends'), "extends method is NOT unimported"); -is(Foo->extends, "good", "extends method is ours, not the extends keyword"); +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"); +};