summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorVitali Peil <vitali.peil@uni-bielefeld.de>2017-06-26 19:03:01 -0400
committerJames E Keenan <jkeenan@cpan.org>2017-07-05 18:11:24 -0400
commit8abe6e1a76dd79b3948879a75933683b5401ec6b (patch)
tree7b9896207d42bd77879256303a349cabbb70bc12 /t
parent2099df82093c659627a40a9adc09512848617d96 (diff)
downloadperl-8abe6e1a76dd79b3948879a75933683b5401ec6b.tar.gz
Add test descriptions for some tests in t/base/translate.t.
This partially resolves RT # 131655. Vitali Peil is now a Perl author.
Diffstat (limited to 't')
-rw-r--r--t/base/translate.t5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/base/translate.t b/t/base/translate.t
index 614f22c9c6..e471eb8e63 100644
--- a/t/base/translate.t
+++ b/t/base/translate.t
@@ -14,7 +14,7 @@ for my $i (0 .. 255) {
print "not ";
}
print "ok ";
- print $i + 1;
+ print $i + 1 . " - native_to_unicode $i";
print "\n";
}
@@ -23,5 +23,4 @@ for my $i (0 .. 255) {
if (utf8::unicode_to_native(utf8::native_to_unicode(100000)) != 100000) {
print "not ";
}
-print "ok ";
-print "257\n";
+print "ok 257 - native_to_unicode of large number\n";