in reply to Code coverage

Module::Build has support for testing code coverage.

testcover: Runs the "test" action using "Devel::Cover", generating a code-coverage report showing which parts of the code were actually exercised during the tests.

And it is as simple to use as this:

perl Build.PL ./Build testcover

- Cees