You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prove has many features, but for my case I'm just interested in the part where it aggregates a TAP stream (originating from a non-Perl toolchain) and reports its little summary at the bottom with Result: FAIL/PASS.
The shortest working solution I could find is
printf "1..1\nok 1\n" | # example TAP emitter
prove -e 'cat -' /dev/null
which is lame. The report includes the dummy filename because prove insists on having a filename.
Streams should have first-class support in prove, somehow.
The text was updated successfully, but these errors were encountered:
prove
has many features, but for my case I'm just interested in the part where it aggregates a TAP stream (originating from a non-Perl toolchain) and reports its little summary at the bottom with Result: FAIL/PASS.The shortest working solution I could find is
which is lame. The report includes the dummy filename because prove insists on having a filename.
Streams should have first-class support in
prove
, somehow.The text was updated successfully, but these errors were encountered: