I have a nasty workaround.

# at the beginning
my $test_allowance = 100;
plan tests => $test_allowance;

# run the tests here and for each test also execute
$test_allowance--;


# in the end
ok(1) while $test_allowance--;

I really hope there is a nicer way to do it.

  Gabor
  http://www.szabgab.com/

Reply via email to