From: gerv%gerv.net <> Date: Sun, 1 Mar 2009 04:03:14 +0000 (+0000) Subject: Bug 126955 - Bugzilla should support translated/localized templates. Patch by burnus... X-Git-Tag: bugzilla-3.3.4~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=807407dee1ada838031bc975f0cd562e19bc5ec9;p=thirdparty%2Fbugzilla.git Bug 126955 - Bugzilla should support translated/localized templates. Patch by burnus; r=gerv, a=justdave. --- diff --git a/t/005whitespace.t b/t/005whitespace.t index f1d5f9be50..51433fe134 100644 --- a/t/005whitespace.t +++ b/t/005whitespace.t @@ -34,12 +34,13 @@ use Support::Templates; use File::Spec 0.82; use Test::More tests => ( scalar(@Support::Files::testitems) - + scalar(@Support::Templates::actual_files)); + + $Support::Templates::num_actual_files); my @testitems = @Support::Files::testitems; -my @templates = map(File::Spec->catfile($Support::Templates::include_path, $_), - @Support::Templates::actual_files); -push(@testitems, @templates); +for my $path (@Support::Templates::include_paths) { + push(@testitems, map(File::Spec->catfile($path, $_), + Support::Templates::find_actual_files($path))); +} foreach my $file (@testitems) { open (FILE, "$file");