summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorjake%acutex.net <>2002-02-14 04:24:05 +0100
committerjake%acutex.net <>2002-02-14 04:24:05 +0100
commit9d2a3d8fbc9e4068d21df86083780e908834b187 (patch)
treeeea042beadc3f74c838e0a3d8f6ffd41623ccf0d /t
parentdcca787ff7c8339cabff592d8dd81a1b58cc99ad (diff)
downloadbugzilla-9d2a3d8fbc9e4068d21df86083780e908834b187.tar.gz
bugzilla-9d2a3d8fbc9e4068d21df86083780e908834b187.tar.xz
Update the test to use the same basic format as the handling code from globals.pl
Diffstat (limited to 't')
-rw-r--r--t/004template.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/004template.t b/t/004template.t
index 578a91b9e..4c3c898c1 100644
--- a/t/004template.t
+++ b/t/004template.t
@@ -55,11 +55,12 @@ foreach my $file(@testitems) {
my $template = Template->new(
{
INCLUDE_PATH => $include_path ,
- RELATIVE => 1,
# Need to define filters used in the codebase, they don't
# actually have to function in this test, just be defined.
FILTERS =>
{
+ strike => sub { return $_ } ,
+ js => sub { return $_ }
},
}
);