Skip to content

Instantly share code, notes, and snippets.

@exodist
Last active February 21, 2016 20:25
Show Gist options
  • Save exodist/0e6ad75094000c1858a1 to your computer and use it in GitHub Desktop.
Save exodist/0e6ad75094000c1858a1 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use Test2::IPC;
use Test::More;
for (1 .. 2) {
Test2::API::run_subtest(foo => sub {
my $pid = fork();
Test2::API::run_subtest(bar => sub {
ok(1);
}, 1);
exit 0 unless $pid;
waitpid($pid, 0) if $pid;
}, 1);
}
done_testing;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment