Commit 788a709d authored by jake%acutex.net's avatar jake%acutex.net

Check templates for tabs, also.

parent 743c714d
...@@ -26,12 +26,17 @@ ...@@ -26,12 +26,17 @@
BEGIN { use lib "t/"; } BEGIN { use lib "t/"; }
BEGIN { use Support::Files; } BEGIN { use Support::Files; }
BEGIN { use Support::Templates; }
BEGIN { $tests = @Support::Files::testitems; } BEGIN { $tests = @Support::Files::testitems; }
BEGIN { $tests += @Support::Templates::testitems; }
BEGIN { use Test::More tests => $tests; } BEGIN { use Test::More tests => $tests; }
use strict; use strict;
my @testitems = @Support::Files::testitems; my @testitems = @Support::Files::testitems;
my @templates = map($Support::Templates::include_path . "/" . $_,
@Support::Templates::testitems);
push(@testitems, @templates);
foreach my $file (@testitems) { foreach my $file (@testitems) {
open (FILE, "$file"); open (FILE, "$file");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment