diff options
Diffstat (limited to 't')
-rw-r--r-- | t/Support/Templates.pm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm index 6e5fb2904..c15611d46 100644 --- a/t/Support/Templates.pm +++ b/t/Support/Templates.pm @@ -43,19 +43,4 @@ foreach my $file (@files) { } } -# Now let's look at the templates and find any other templates -# that are INCLUDEd. -foreach my $file(@testitems) { - open (FILE, $include_path . "/" . $file) || next; - my @lines = <FILE>; - close (FILE); - foreach my $line (@lines) { - if ($line =~ m/\[% (?:INCLUDE|PROCESS) (.+?) /) { - my $template = $1; - push (@testitems, $template) unless $t{$template}; - $t{$template} = 1; - } - } -} - 1; |