- or download this
my $desc;
sub TEST { $desc = $_[0] };
...
TEST "can't slurp in void context";
# your test here
ok 1, $desc;
- or download this
use strict;
use warnings; #comment before releasing
...
done_testing();
1;
- or download this
1..4
ok 1 - A Fruit On a branch Grows
ok 2 - A Fruit On a branch Can rot
ok 3 - A Fruit On a branch Can fall
ok 4 - A Fruit On the floor Rots