Hi,
I work for CPAN tester and test your module on several os. Some tests
fails sometimes, but automatic process can't handle this in this form
and always report "PASS".
Why ? Because you use your own "ok" method and always exit with 0.
I suggest you 2 ways to benefit feedback of cpan tester:
- use Test::Simple in place of your ok method
- or follow common rules for test script:
- exit with 0 only if all tests pass
- exit with number of failed tests if some test fails
- exit with 255 if really problem.
Take a look in Test::Simple::Tutorial, you will see some help.
HTH,
--
Alain BARBET
