summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorjake%acutex.net <>2001-10-26 22:21:38 +0200
committerjake%acutex.net <>2001-10-26 22:21:38 +0200
commit9822f8b1596f2729be57a1f904e198ce6566c643 (patch)
treee7a32df2b937dd056b2efb0944932eea14ec8c03 /t
parenta87a5b411b4f173a7b1de2b919e71335306349ed (diff)
downloadbugzilla-9822f8b1596f2729be57a1f904e198ce6566c643.tar.gz
bugzilla-9822f8b1596f2729be57a1f904e198ce6566c643.tar.xz
Check templates for tabs, also.
Diffstat (limited to 't')
-rw-r--r--t/005no_tabs.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/005no_tabs.t b/t/005no_tabs.t
index e420baaaa..a3c9fed3a 100644
--- a/t/005no_tabs.t
+++ b/t/005no_tabs.t
@@ -26,12 +26,17 @@
BEGIN { use lib "t/"; }
BEGIN { use Support::Files; }
+BEGIN { use Support::Templates; }
BEGIN { $tests = @Support::Files::testitems; }
+BEGIN { $tests += @Support::Templates::testitems; }
BEGIN { use Test::More tests => $tests; }
use strict;
my @testitems = @Support::Files::testitems;
+my @templates = map($Support::Templates::include_path . "/" . $_,
+ @Support::Templates::testitems);
+push(@testitems, @templates);
foreach my $file (@testitems) {
open (FILE, "$file");