tests: html Vorlagen auch in Testdateien aufnehmen
authorSven Schöling <s.schoeling@linet-services.de>
Wed, 23 Dec 2015 10:03:14 +0000 (11:03 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 23 Dec 2015 10:03:14 +0000 (11:03 +0100)
t/Support/Files.pm

index d05f365..b91f44f 100644 (file)
@@ -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) = @_;