Skip to content

Commit 9fcdcd6

Browse files
committed
test tc(LATIN SMALL LETTER LJ)
1 parent dd2f7f4 commit 9fcdcd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

S32-str/tc.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22

33
use Test;
44

5-
plan 7;
5+
plan 8;
66

77
# L<S32::Str/Str/ucfirst>
88

@@ -11,6 +11,7 @@ is tc(""), "", "empty string";
1111
is tc("üüüü"), "Üüüü", "umlaut";
1212
is tc("óóóó"), "Óóóó", "accented chars";
1313
is tc('ßß'), 'Ssß', 'sharp s => Ss';
14+
is tc('lj'), 'Lj', 'lj => Lj (in one character)';
1415
is 'abc'.tc, 'Abc', 'method form of title case';
1516
is 'aBcD'.tc, 'ABcD', 'tc only modifies first character';
1617

0 commit comments

Comments
 (0)