Test::Harness doesn't mind if you don't have numbers on your tests
(not sure if this is by design or just by implementation) so this
"test script"
print "ok a hello\n";
print "not ok b hello\n";
print "1..2\n";
Gives
t/aFAILED test 2
Failed 1/2 tests, 50.00% okay
Failed Test Stat Wst
On Wed, Dec 21, 2005 at 01:34:39PM -0800, Joe McMahon wrote:
> print < 1..1
> not ok 1 ... failed once
> not ok 1 ... failed twice
> ok 1 ... worked
> EOS
> Obviously, you can wrap up the actual test in a retry loop/function,
> but this doesn't match up with the simplicity of Test::More and rel