summaryrefslogtreecommitdiff
path: root/lib/English.t
diff options
context:
space:
mode:
authorMichiel Beijen <mb@x14.nl>2021-12-03 07:56:08 +0100
committerMichiel Beijen <mb@x14.nl>2021-12-04 15:55:55 +0100
commit70cbce258a2f0c602dd4e986bb1d31ec3d459158 (patch)
treecac900e71152888dba2c76b0974db2d87ab49e09 /lib/English.t
parente728f790bcefcaf1d8b42e2f7ee16a9125f0af22 (diff)
downloadperl-70cbce258a2f0c602dd4e986bb1d31ec3d459158.tar.gz
do not count tests, instead use done_testing()
Having to count tests is annoying for maintainers. Also, manually updating count tests is problematic when multiple people are working on the same code; it causes merge conflicts and recounts. done_testing() is available since Test::More 0.88 which was released in 2009. This commit changes all tests under lib/ that use Test::More and were planning the number of tests. Michiel Beijen is now a Perl author
Diffstat (limited to 'lib/English.t')
-rw-r--r--lib/English.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/English.t b/lib/English.t
index f568d437a4..dc15926c69 100644
--- a/lib/English.t
+++ b/lib/English.t
@@ -6,7 +6,7 @@ BEGIN {
@INC = '../lib';
}
-use Test::More tests => 58;
+use Test::More;
use English qw( -no_match_vars ) ;
use Config;
@@ -164,6 +164,9 @@ main::ok( !$POSTMATCH, '$POSTMATCH disabled' );
::is $LIST_SEPARATOR, 'frooble';
}
+# because of the 'package' statements above, we have to prefix Test::More::
+Test::More::done_testing();
+
__END__
This is a line.
This is a paragraph.