From: Sven Schöling Date: Wed, 23 Dec 2015 10:03:14 +0000 (+0100) Subject: tests: html Vorlagen auch in Testdateien aufnehmen X-Git-Tag: release-3.4.1~501 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=911031a371d6bb2115170ebd24fcdb61d5967cc0;p=kivitendo-erp.git tests: html Vorlagen auch in Testdateien aufnehmen --- diff --git a/t/Support/Files.pm b/t/Support/Files.pm index d05f365e3..b91f44f8f 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -40,6 +40,7 @@ use File::Find; @files = glob('*'); find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, 'SL'); find(sub { push(@files, $File::Find::name) if $_ =~ /\.pl$/;}, qw(bin/mozilla sql/Pg-upgrade2)); +find(sub { push(@files, $File::Find::name) if $_ =~ /\.html$/;}, qw(templates/webpages)); sub have_pkg { my ($pkg) = @_;