/usr/share/doc/perl-Test-Simple/examples
NameSizeModeActions
indent.pl6810644editdlrm
subtest.t3480644editdlrm
tools.pl30690644editdlrm
tools.t46660644editdlrm
Edit: /usr/share/doc/perl-Test-Simple/examples/subtest.t (348B)
#!/usr/bin/env perl use strict; use warnings; use lib '../lib'; use Test::More tests => 3; ok 1; subtest 'some name' => sub { my $num_tests = 2 + int( rand(3) ); plan tests => $num_tests; ok 1 for 1 .. $num_tests - 1; subtest 'some name' => sub { plan 'no_plan'; ok 1 for 1 .. 2 + int( rand(3) ); }; }; ok 1;