This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
new perldelta
[perl5.git] / cpan / Test-Simple / t / regression / no_name_in_subtest.t
CommitLineData
b4514920
CG
1use strict;
2use warnings;
3
a5ab2255 4use Test2::Tools::Tiny;
b4514920
CG
5
6ok(1, "");
7
8tests foo => sub {
9 ok(1, "name");
10 ok(1, "");
11};
12
13done_testing;