TAP::Parser::Iterator::Process

TAP::Parser::Iterator::Process

NAME

TAP::Parser::Iterator::Process - Iterator for process-based TAP sources

VERSION

Version 3.35

SYNOPSIS

use TAP::Parser::Iterator::Process;
my %args = (
 command  => ['python', 'setup.py', 'test'],
 merge    => 1,
 setup    => sub { ... },
 teardown => sub { ... },
);
my $it   = TAP::Parser::Iterator::Process->new(\%args);
my $line = $it->next;