X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2F002goodperl.t;h=d70ad89fc7078696847c419e469413fc3965ff6b;hb=3ef788be3eabee838cf1f9f4a9a6051bfa847554;hp=3196d0057dca27e05ec3cd6f923a71090a7e3eed;hpb=82d241d9ab73fe9dfda7caac776a9c364036ca44;p=kivitendo-erp.git diff --git a/t/002goodperl.t b/t/002goodperl.t index 3196d0057..d70ad89fc 100644 --- a/t/002goodperl.t +++ b/t/002goodperl.t @@ -32,7 +32,7 @@ use lib 't'; use Support::Files; -use Test::More tests => (scalar(@Support::Files::testitems) * 3); +use Test::More tests => scalar @Support::Files::testitems * 2; my @testitems = @Support::Files::testitems; # get the files to test. @@ -78,6 +78,8 @@ foreach my $file (@testitems) { } } +TODO: { +local $TODO = 'strict is not implemented thoroughly yet'; foreach my $file (@testitems) { my $found_use_strict = 0; $file =~ s/\s.*$//; # nuke everything after the first space (#comment) @@ -99,31 +101,6 @@ foreach my $file (@testitems) { ok(0,"$file DOES NOT use strict --WARNING"); } } - -# Check to see that all error messages use tags (for l10n reasons.) -foreach my $file (@testitems) { - $file =~ s/\s.*$//; # nuke everything after the first space (#comment) - next if (!$file); # skip null entries - if (! open (FILE, $file)) { - ok(0,"could not open $file --WARNING"); - next; - } - my $lineno = 0; - my $error = 0; - - while (!$error && (my $file_line = )) { - $lineno++; - if ($file_line =~ /Throw.*Error\("(.*?)"/) { - if ($1 =~ /\s/) { - ok(0,"$file has a Throw*Error call on line $lineno which doesn't use a tag --ERROR"); - $error = 1; - } - } - } - - ok(1,"$file uses Throw*Error calls correctly") if !$error; - - close(FILE); } exit 0;