X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2F002goodperl.t;h=d80d9eea31eae67840cbe2eda253cf1439dcb4ef;hb=4252995520f5020735ca33d3fbbe63d9f6d4ef0b;hp=75a378c1e85eed5b4a89bab93a9cee7caeb9e4e3;hpb=f6e8c87bc23cb8b31a554ce89af51d2c3b0a5efd;p=kivitendo-erp.git diff --git a/t/002goodperl.t b/t/002goodperl.t index 75a378c1e..d80d9eea3 100644 --- a/t/002goodperl.t +++ b/t/002goodperl.t @@ -82,6 +82,8 @@ foreach my $file (@testitems) { } foreach my $file (@testitems) { + local $TODO; + $TODO = 'schema updates are not required to be strict now' if $file =~ m{^sql/Pg-upgrade2}; my $found_use_strict = 0; $file =~ s/\s.*$//; # nuke everything after the first space (#comment) next if (!$file); # skip null entries @@ -119,7 +121,8 @@ foreach my $file (@testitems) { next; } while (my $file_line = ) { - if ($file_line =~ m/(<\/?$tags>)/) { + last if $file_line =~ /^__END__/; + if ($file_line =~ m/(<\/?$tags>)/o) { $found_html_count++; $found_html .= $1; } @@ -128,7 +131,7 @@ foreach my $file (@testitems) { if (!$found_html_count) { ok(1,"$file does not contain HTML"); } elsif ($found_html_count < 50) { - TODO: { local $TODO = q(Even slow amounts should go away....); + TODO: { local $TODO = q(Even little amounts of HTML should go away....); ok(0,"$file contains at least $found_html_count html tags."); } } else {