You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
isuniprop(""), Nil, "uniprop an empty string yields Nil";
49
49
is"".uniprop, Nil, "''.uniprop yields Nil";
50
50
throws-like"uniprop Str", X::Multi::NoMatch, 'cannot call uniprop with a Str';
@@ -79,6 +79,9 @@ is "\x[FB00]".tc, "\x[0046]\x[0066]", ".tc: returns proper lowercase mapping for
79
79
isuniprop(0xFB00, 'Titlecase_Mapping'), "\x[0046]\x[0066]", "uniprop: returns proper titlecase mapping for LATIN SMALL LIGATURE FF";
80
80
is"\x[FB00]".uc, "\x[0046]\x[0046]", ".uc: returns proper uppercase mapping for LATIN SMALL LIGATURE FF";
81
81
isuniprop(0xFB00, 'Uppercase_Mapping'), "\x[0046]\x[0046]", ".uc: returns proper uppercase mapping for LATIN SMALL LIGATURE FF";
82
+
is'ß'.uniprop('Simple_Uppercase_Mapping'), 'ß', "uniprop for Simple_Uppercase_Mapping returns LATIN SMALL LETTER SHARP S for LATIN SMALL LETTER SHARP S";
83
+
84
+
82
85
is"\x[FB00]".uniname, "LATIN SMALL LIGATURE FF", "uniname: returns proper name for LATIN SMALL LIGATURE FF";
83
86
is"st".fc, "st", "'st'.fc returns ‘st’";
84
87
#?rakudo.moar todo "uniprop('Case_Folding') does not yet work"
0 commit comments