Help for this page
use TAP::Parser; for my $file ( @test_files ) { my $parser = TAP::Parser->new( { source => $file } ); # do stuff with the parser }
use Test::More 'no_plan'; ... ok(1); ok(0,'bar');