Tap-Parser

TAP::Parser(3p) Perl Programmers Reference Guide TAP::Parser(3p)

Tap-Parser

TAP::Parser(3p) Perl Programmers Reference Guide TAP::Parser(3p) # TAP::Parser(3p) Perl Programmers Reference Guide TAP::Parser(3p) NNAAMMEE # TAP::Parser - Parse TAP output VVEERRSSIIOONN # Version 3.44 SSYYNNOOPPSSIISS # use TAP::Parser; my $parser = TAP::Parser->new( { source => $source } ); while ( my $result = $parser->next ) { print $result->as_string; } DDEESSCCRRIIPPTTIIOONN # "TAP::Parser" is designed to produce a proper parse of TAP output. For an example of how to run tests through this module, see the simple harnesses "examples/". ...