diff options
author | zach%zachlipton.com <> | 2001-10-31 09:06:31 +0000 |
---|---|---|
committer | zach%zachlipton.com <> | 2001-10-31 09:06:31 +0000 |
commit | 6123fc3f0c529e474ea338c109b49af3fec6b52e (patch) | |
tree | 40f5778c086f05becc99b9fe2dac2db9c225d58e /t/Support/Files.pm | |
parent | Fix test bustage by removing tabs. (diff) | |
download | bugzilla-6123fc3f0c529e474ea338c109b49af3fec6b52e.tar.gz bugzilla-6123fc3f0c529e474ea338c109b49af3fec6b52e.tar.bz2 bugzilla-6123fc3f0c529e474ea338c109b49af3fec6b52e.zip |
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/Support/Files.pm')
-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; |