
TAP::Parser::Source - Stream output from some source

Version 0.54

Takes a command and hopefully returns a stream from it.

use TAP::Parser::Source; my $source = TAP::Parser::Source->new; my $stream = $source->source(['/usr/bin/ruby', 'mytest.rb'])->get_stream;

newmy $source = TAP::Parser::Source->new;
Returns a new TAP::Parser::Source object.
sourcemy $source = $source->source; $source->source(['./some_prog some_test_file']); # or $source->source(['/usr/bin/ruby', 't/ruby_test.rb']);
Getter/setter for the source. The source should generally consist of an array reference of strings which, when executed via &IPC::Open3::open3, should return a filehandle which returns successive rows of TAP.
get_streammy $stream = $source->get_stream;
Returns a stream of the output generated by executing source.
error unless ( my $stream = $source->get_stream ) {
die $source->error;
}
If a stream cannot be created, this method will return the error.
exitmy $exit = $source->exit;
Returns the exit status of the process if and only if an error occurs in opening the file.
mergemy $merge = $source->merge;
Sets or returns the flag that dictates whether STDOUT and STDERR are merged.