http://qs321.pair.com?node_id=11119756


in reply to Re^2: Inverting test conditions in Test::More ? (workaround)
in thread Inverting test conditions in Test::More ?

Are you testing regular code, or testing other tests?

If the former, why not just something like
my $cond = 1 == 2; ok( $cond ); # fails ok( ! $cond ); # passes
... or whatever boolean condition.

If the latter, Test::Builder::Tester seems designed to test other tests.

To be fair, I could be misunderstanding - this is not a use case I've come across before.