summaryrefslogtreecommitdiffstats
path: root/t/004template.t
diff options
context:
space:
mode:
Diffstat (limited to 't/004template.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 $_ }
},
}
);