On Mon, Jan 12, 2004 at 05:26:59PM +0100, Elizabeth Mattijsen wrote: > So, what I'd like to add for myself is something like: > todo_ok( test,{1001 => "a b c still fails, wonder why", 2345 => "d e gf to be investigated",> },"ok text" ); > The conundrum I'm facing with this is that the "current_test" methodof Test::Builder is not available from Test::More. And the Test::Builder object being used in a Test::More run is also not> available in Test::More. And I don't want to make another Test::More. You can just do Test::Builder->new to get the Test::Builder object. It will be the same one used by Test::More because it's a singleton. That way you should need no patches,
Argh... I missed that while going through the source.
You're right! Ok, that solves my problem and allows me to make my todo_ok test.
Liz