From: Rafael Garcia-Suarez Date: Wed, 30 Apr 2008 15:56:18 +0000 (+0000) Subject: Add a test for "lc(LATIN CAPITAL LETTER SHARP S)" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aa4af5426d2beeb297fc20a3d1550455de5c929b;p=p5sagit%2Fp5-mst-13.2.git Add a test for "lc(LATIN CAPITAL LETTER SHARP S)" p4raw-id: //depot/perl@33775 --- diff --git a/t/op/lc.t b/t/op/lc.t index 4bfefb7..5f4c6b4 100644 --- a/t/op/lc.t +++ b/t/op/lc.t @@ -6,7 +6,7 @@ BEGIN { require './test.pl'; } -plan tests => 92; +plan tests => 93; is(lc(undef), "", "lc(undef) is ''"); is(lcfirst(undef), "", "lcfirst(undef) is ''"); @@ -217,3 +217,6 @@ for ("$temp") { lc $_; is($_, "Hello"); } + +# new in Unicode 5.1.0 +is(lc("\x{1E9E}"), "\x{df}", "lc(LATIN CAPITAL LETTER SHARP S)");