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