X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2Ftemplate_syntax.t;h=142f102c40ea5523850e6ca2ef15172fbfcd8d73;hb=08e48f66590f580cbe2c8e3df76883d88b4c0fef;hp=b1b4224bf07afcf4105812802e780f3c4ee9003f;hpb=5dba1d4a26ad134882a22e47e4f3c632a73d4b7a;p=kivitendo-erp.git diff --git a/t/template_syntax.t b/t/template_syntax.t index b1b4224bf..142f102c4 100644 --- a/t/template_syntax.t +++ b/t/template_syntax.t @@ -3,6 +3,7 @@ use strict; use lib 't'; use Support::Templates; +use Support::TestSetup; use File::Spec; use File::Slurp; @@ -12,14 +13,7 @@ use Test::More tests => ( scalar(@referenced_files)); my $template_path = 'templates/webpages/'; -my $provider = Template::Provider->new({ - INTERPOLATE => 0, - EVAL_PERL => 0, - ABSOLUTE => 1, - CACHE_SIZE => 0, - PLUGIN_BASE => 'SL::Template::Plugin', - INCLUDE_PATH => '.:' . $template_path, -}); +my $provider = Template::Provider->new(Support::TestSetup::template_config()); foreach my $ref (@Support::Templates::referenced_files) { my $file = "${template_path}${ref}.html"; @@ -33,7 +27,7 @@ foreach my $ref (@Support::Templates::referenced_files) { ok(0, "${file} contains syntax errors"); } else { - die "Unknown result type: " . ref($result); + die "Unknown result type: " . ref($result) . " for file " . $file; } }