diff options
Diffstat (limited to 't')
-rw-r--r-- | t/Support/Files.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 1bdf2eac7..603d95cf9 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -30,7 +30,7 @@ our @extensions = glob('extensions/*'); foreach my $extension (@extensions) { - find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, $extension); + find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$|\.pl$/;}, $extension); } our @test_files = glob('t/*.t xt/*/*.t'); |