TAP::Parser::Source - Stream output from some source
use TAP::Parser::Source; my $source = TAP::Parser::Source->new; my $stream = $source->source(['/usr/bin/ruby', 'mytest.rb'])->get_stream;
my $source = TAP::Parser::Source->new;
Returns a new "TAP::Parser::Source" object.
my $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.
my $stream = $source->get_stream;
Returns a stream of the output generated by executing "source".
unless ( my $stream = $source->get_stream ) { die $source->error; }
If a stream cannot be created, this method will return the error.
my $exit = $source->exit;
Returns the exit status of the process if and only if an error occurs in opening the file.
my $merge = $source->merge;
Sets or returns the flag that dictates whether STDOUT and STDERR are merged.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |