Help for this page

Select Code to Download


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