From 807407dee1ada838031bc975f0cd562e19bc5ec9 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sun, 1 Mar 2009 04:03:14 +0000 Subject: Bug 126955 - Bugzilla should support translated/localized templates. Patch by burnus; r=gerv, a=justdave. --- t/005whitespace.t | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 't') diff --git a/t/005whitespace.t b/t/005whitespace.t index f1d5f9be5..51433fe13 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"); -- cgit v1.2.3-24-g4f1b