in reply to Strange test skips with Test::WWW::Mechanize
Since you're using Test::Class, my guess is that you have a test where you claim to be running $X tests but are actually running three less than that number. Find the method those tests are skipped in and count the number of tests you're running and compare that to the number of declared tests. For example, this will generate a similar problem:
sub foo : Test(4) { ok 1, 'we will have three tests skipped'; }
If you're generating tests iteratively then the skipped tests are possibly indicative of a behavioral change you should look into.
Cheers,
Ovid
New address of my CGI Course.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Strange test skips with Test::WWW::Mechanize
by friedo (Prior) on Dec 01, 2005 at 19:43 UTC |