The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use utf8;
use Test::Pretty;
use Test::More;

ok 1;
my $pid = fork();
die "Cannot fork: $!" if not defined $pid;
if ($pid == 0) {
    # child
    exit;
} else {
    # parent
    waitpid $pid, 0;
    is($?, 0);
}

done_testing;