Commit 9822f8b1 authored by jake%acutex.net's avatar jake%acutex.net

Check templates for tabs, also.

parent a87a5b41
......@@ -26,12 +26,17 @@
BEGIN { use lib "t/"; }
BEGIN { use Support::Files; }
BEGIN { use Support::Templates; }
BEGIN { $tests = @Support::Files::testitems; }
BEGIN { $tests += @Support::Templates::testitems; }
BEGIN { use Test::More tests => $tests; }
use strict;
my @testitems = @Support::Files::testitems;
my @templates = map($Support::Templates::include_path . "/" . $_,
@Support::Templates::testitems);
push(@testitems, @templates);
foreach my $file (@testitems) {
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