diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-10-18 23:23:57 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-10-18 23:23:57 +0200 |
commit | b2af914ec824e3c7b3773c0ffd9d9a7e08290caf (patch) | |
tree | 6b61f469e2efab77c009639b368342f88e4b6b53 /t | |
parent | ed5bb28d64bbf3f6cf64c6a47d149296881a5497 (diff) | |
download | bugzilla-b2af914ec824e3c7b3773c0ffd9d9a7e08290caf.tar.gz bugzilla-b2af914ec824e3c7b3773c0ffd9d9a7e08290caf.tar.xz |
Fix t/004template.t to find certain templates in the extensions
Diffstat (limited to 't')
-rw-r--r-- | t/004template.t | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/t/004template.t b/t/004template.t index 3b858c0b3..ce18619e7 100644 --- a/t/004template.t +++ b/t/004template.t @@ -60,11 +60,16 @@ my $fh; # fall back to English if necessary. foreach my $file (@referenced_files) { - my $path = File::Spec->catfile($english_default_include_path, $file); - if (-e $path) { - ok(1, "$path exists"); + my @path = map(File::Spec->catfile($_, $file), @include_paths); + push(@path, File::Spec->catfile($english_default_include_path, $file)); + my $found; + foreach my $path (@path) { + $found = $path if -e $path; + } + if ($found) { + ok(1, "$file exists"); } else { - ok(0, "$path cannot be located --ERROR"); + ok(0, "$file cannot be located --ERROR"); } } |