Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created January 6, 2017 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/3470b494c347b276a23e2f4b638d9262 to your computer and use it in GitHub Desktop.
Save zoffixznet/3470b494c347b276a23e2f4b638d9262 to your computer and use it in GitHub Desktop.
use lib <lib>;
use TAP:auth<perl>;
my $h = TAP::Harness.new: output => class :: is IO::Handle {
method print(|) { }
method t { False }
}.new, :trap, :err('ignore');
my $w = $h.run("t.t").waiter;
await $w;
# .say for $w.result
use Test;
plan 1;
ok 1, 'x';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment