On Tue, Mar 08, 2005 at 05:05:02PM -0500, David Golden wrote: > doing the what I want before I write it. I think the approach works, > but all this mucking about in the internals of Test::Builder feels like > voodoo.
All the vodoo has already been done for Test::Tester. my @results = run_tests( sub { is_this(..); is_that(..); is_theother(..) }, ); for my $res (@results) { # $res contains a hash of pass/fail, diagnostics etc etc } F