diff options
-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 2396e5d28..63c55ce86 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -47,7 +47,7 @@ sub isTestingFile { if ($file eq $exclude) { return undef; } # get rid of excluded files. } - if ($file =~ /\.cgi$|\.pl$/) { + if ($file =~ /\.cgi$|\.pl$|\.pm$/) { return 1; } my $additional; |