Help for this page

Select Code to Download


  1. or download this
    1..4
    ok 1
    ...
    not ok 3
    #   Failed test at t/my_test.t line 7.
    ok 4
    
  2. or download this
    my $tap = qx|./compiled_test_app|;
    my $parser = TAP::Parser->new( { tap => $tap } );
    
  3. or download this
    use strict;
    use warnings;
    ...
            die "Can't figure out what to do with $result";
        }
    }
    
  4. or download this
    1..4
    ok 1 - ok 1
    ...
    #   at t/tap_wrapper.t line 28.
    #   Failed test at t/my_test.t line 7.ok 4 - ok 4
    # Looks like you failed 1 test of 4.
    
  5. or download this
    use Test::ParseTAP;
    my $tap = qx|./compiled_test|;
    parse_tap($tap);