From e8bbc7ef2a4e8b01686db6870e51dadc184fa356 Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" Date: Fri, 26 Oct 2001 13:21:38 +0000 Subject: [PATCH] Check templates for tabs, also. git-svn-id: svn://10.0.0.236/trunk@106358 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/t/005no_tabs.t | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mozilla/webtools/bugzilla/t/005no_tabs.t b/mozilla/webtools/bugzilla/t/005no_tabs.t index e420baaaaab..a3c9fed3aeb 100644 --- a/mozilla/webtools/bugzilla/t/005no_tabs.t +++ b/mozilla/webtools/bugzilla/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");