summaryrefslogtreecommitdiffstats
path: root/t/006spellcheck.t
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-12-03 19:02:50 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2012-12-03 19:02:50 +0100
commit5ac0fa098c1812d9b5c57e8844ec1f44ed1cde05 (patch)
treefebe727b833b60f60027f403eb13c1da4d18b1e5 /t/006spellcheck.t
parent0d02249ab821358506048f922abba078770730fd (diff)
downloadbugzilla-5ac0fa098c1812d9b5c57e8844ec1f44ed1cde05.tar.gz
bugzilla-5ac0fa098c1812d9b5c57e8844ec1f44ed1cde05.tar.xz
Bug 817634: Tests in t/ should also check themselves where appropriate
r=glob a=LpSolit
Diffstat (limited to 't/006spellcheck.t')
-rw-r--r--t/006spellcheck.t47
1 files changed, 25 insertions, 22 deletions
diff --git a/t/006spellcheck.t b/t/006spellcheck.t
index 07cd3ea8c..7f17c5169 100644
--- a/t/006spellcheck.t
+++ b/t/006spellcheck.t
@@ -13,29 +13,29 @@
use lib 't';
use Support::Files;
-BEGIN { # yes the indenting is off, deal with it
-#add the words to check here:
-@evilwords = qw(
-anyways
-appearence
-arbitary
-cancelled
-critera
-databasa
-dependan
-existance
-existant
-paramater
-refered
-repsentation
-suported
-varsion
-);
-
-$testcount = scalar(@Support::Files::testitems);
+BEGIN {
+ #add the words to check here:
+ @evilwords = qw(
+ anyways
+ appearence
+ arbitary
+ cancelled
+ critera
+ databasa
+ dependan
+ existance
+ existant
+ paramater
+ refered
+ repsentation
+ suported
+ varsion
+ );
}
-use Test::More tests => $testcount;
+# -1 because 006spellcheck.t must not be checked.
+use Test::More tests => scalar(@Support::Files::testitems)
+ + scalar(@Support::Files::test_files) - 1;
# Capture the TESTOUT from Test::More or Test::Builder for printing errors.
# This will handle verbosity for us automatically.
@@ -51,7 +51,7 @@ my $fh;
}
}
-my @testitems = @Support::Files::testitems;
+my @testitems = (@Support::Files::testitems, @Support::Files::test_files);
# at last, here we actually run the test...
my $evilwordsregexp = join('|', @evilwords);
@@ -59,6 +59,9 @@ my $evilwordsregexp = join('|', @evilwords);
foreach my $file (@testitems) {
$file =~ s/\s.*$//; # nuke everything after the first space (#comment)
next if (!$file); # skip null entries
+ # Do not try to validate this file as it obviously contains a list
+ # of wrongly spelled words.
+ next if ($file eq 't/006spellcheck.t');
if (open (FILE, $file)) { # open the file for reading