summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorjake%acutex.net <>2009-03-01 05:03:10 +0100
committerjake%acutex.net <>2009-03-01 05:03:10 +0100
commit788a709dd4cbe325e949cc15a8ceaab3a2930a75 (patch)
tree2a3da399819cf168f375133a9f25bf6b0b22f480 /t
parent743c714d0a0e5cadf450dcbf027139db30bbef03 (diff)
downloadbugzilla-788a709dd4cbe325e949cc15a8ceaab3a2930a75.tar.gz
bugzilla-788a709dd4cbe325e949cc15a8ceaab3a2930a75.tar.xz
Check templates for tabs, also.
Diffstat (limited to 't')
-rw-r--r--t/005whitespace.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/005whitespace.t b/t/005whitespace.t
index e420baaaa..a3c9fed3a 100644
--- a/t/005whitespace.t
+++ b/t/005whitespace.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");