From 934948d1e59b99f23083e73c17344806cd25084b Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" <> Date: Sun, 7 Oct 2001 04:37:20 +0000 Subject: We also need to look for templates that are INCLUDEd in other templates. No review needed for tests at this time. NOT PART OF BUILD --- t/004template.t | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 't/004template.t') diff --git a/t/004template.t b/t/004template.t index 7077a6f17..ce36683fc 100644 --- a/t/004template.t +++ b/t/004template.t @@ -32,13 +32,14 @@ BEGIN { use Test::More tests => $tests; } use Template; my @testitems = @Support::Templates::testitems; +my $include_path = $Support::Templates::include_path; my $verbose = $::ENV{VERBOSE}; # Check to make sure all templates that are referenced in # Bugzilla exist in the proper place. -my $path = "template/default"; + foreach my $file(@testitems) { - if (-e $path . "/" . $file) { + if (-e $include_path . "/" . $file) { ok(1, "$file exists"); } else { ok(0, "$file does not exist"); @@ -47,7 +48,7 @@ foreach my $file(@testitems) { # Processes all the templates to make sure they have good syntax my $template = Template->new ({ - INCLUDE_PATH => $path, + INCLUDE_PATH => $include_path, RELATIVE => 1 }); @@ -55,7 +56,7 @@ open SAVEOUT, ">&STDOUT"; # stash the original output stream open STDOUT, "> /dev/null"; # discard all output foreach my $file(@testitems) { if ($template->process($file)) { - ok(1, "$file"); + ok(1, "$file syntax ok"); } else { ok(0, "$file has bad syntax"); } -- cgit v1.2.3-24-g4f1b