summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-01-13 07:52:37 +0100
committerjocuri%softhome.net <>2004-01-13 07:52:37 +0100
commitbf83c0fa5d2931efae64a2386c263b1efc7072fb (patch)
tree6147c3d16c71f413548d672946b72eb7df3fa6e1 /t
parent637b35d05add84f71adcf7d0d3cb060b1c3e7349 (diff)
downloadbugzilla-bf83c0fa5d2931efae64a2386c263b1efc7072fb.tar.gz
bugzilla-bf83c0fa5d2931efae64a2386c263b1efc7072fb.tar.xz
Bug 216523: t/Support/Files.pm fails to include Bugzilla/Template/Plugin/Bugzilla.pm in the file list; patch by zach@zachlipton.com; r=jouni; a=justdave.
Diffstat (limited to 't')
-rw-r--r--t/Support/Files.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm
index e822346d0..ffadc562c 100644
--- a/t/Support/Files.pm
+++ b/t/Support/Files.pm
@@ -35,7 +35,8 @@ package Support::Files;
# XXX - this file should really be rewritten to use File::Find or similar
$file = '*';
-@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm'));
+@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm'),
+ glob('Bugzilla/*/*/*.pm'));
sub have_pkg {
my ($pkg) = @_;