6 plan(skip_all => 'running installed') if $ENV{INSTALLED_TESTS};
8 my @templates=(glob("templates/*.tmpl"), glob("doc/templates/*.mdwn"));
9 plan(tests => 2*@templates);
13 foreach my $template (@templates) {
14 my $obj=eval {HTML::Template->new(filename => $template)};
15 ok(! $@, $template." $@");