summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorzach%zachlipton.com <>2001-10-31 10:06:31 +0100
committerzach%zachlipton.com <>2001-10-31 10:06:31 +0100
commit6123fc3f0c529e474ea338c109b49af3fec6b52e (patch)
tree40f5778c086f05becc99b9fe2dac2db9c225d58e /t
parent31ad925d14646694bde7f06f10427b17aac146d4 (diff)
downloadbugzilla-6123fc3f0c529e474ea338c109b49af3fec6b52e.tar.gz
bugzilla-6123fc3f0c529e474ea338c109b49af3fec6b52e.tar.xz
Have the tests test .pm files as well, yes this creates bustage, this is
intentional! No review needed for tests at this time.
Diffstat (limited to 't')
-rw-r--r--t/Support/Files.pm2
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;