Tap-Parser-Source

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

Tap-Parser-Source

TAP::Parser::Source(3p) Perl Programmers Reference Guide # TAP::Parser::Source(3p) Perl Programmers Reference Guide NNAAMMEE # TAP::Parser::Source - a TAP source & meta data about it VVEERRSSIIOONN # Version 3.44 SSYYNNOOPPSSIISS # use TAP::Parser::Source; my $source = TAP::Parser::Source->new; $source->raw( \'reference to raw TAP source' ) ->config( \%config ) ->merge( $boolean ) ->switches( \@switches ) ->test_args( \@args ) ->assemble_meta; do { ... } if $source->meta->{is_file}; # see assemble_meta for a full list of data available DDEESSCCRRIIPPTTIIOONN # A TAP _s_o_u_r_c_e is something that produces a stream of TAP for the parser to consume, such as an executable file, a text file, an archive, an IO handle, a database, etc. ...