How Perl Testing Works
- The Perl scripts output the results of the individual tests in the TAP Format:
- Like:
1..N ok 1 Description # Directive # Diagnostic .... ok 47 Description ok 48 Description more tests....
- The Test::Harness module runs the scripts and analyses their TAP instructions, and produces a report.