Skip to content

Commit bc74e18

Browse files
committed
Unfudge now passing tests
1 parent 187fb30 commit bc74e18

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

S15-unicode-information/uniprop.t

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,13 @@ is 'a'.uniprop('Script'), 'Latin', ".uniprop('Script') returns correct result fo
5151
like 'a'.uniprop('Age'), /'1.1'/, "'a'.uniprop('Age') looks like /'1.1'/";
5252
#?rakudo.moar todo 'Unicode 1 names NYI in MoarVM'
5353
is ''.uniprop('Unicode_1_Name'), "PARAGRAPH SIGN", "¶.uniprop('Unicode_1_Name') returns Unicode 1 name";
54-
#?rakudo.moar todo 'Coming soon'
5554
is uniprop(0xFB00, 'Name'), "LATIN SMALL LIGATURE FF", "uniprop: returns proper name for LATIN SMALL LIGATURE FF";
5655

5756
is "\x[FB00]".lc, "\x[FB00]", ".lc: returns proper lowercase mapping for LATIN SMALL LIGATURE FF";
58-
#?rakudo.moar todo 'Coming soon'
5957
is uniprop(0xFB00, 'Lowercase_Mapping'), "\x[FB00]", "uniprop: returns proper lowercase mapping for LATIN SMALL LIGATURE FF";
6058
is "\x[FB00]".tc, "\x[0046]\x[0066]", ".tc: returns proper lowercase mapping for LATIN SMALL LIGATURE FF";
61-
#?rakudo.moar todo 'Coming soon'
6259
is uniprop(0xFB00, 'Titlecase_Mapping'), "\x[0046]\x[0066]", "uniprop: returns proper titlecase mapping for LATIN SMALL LIGATURE FF";
6360
is "\x[FB00]".uc, "\x[0046]\x[0046]", ".uc: returns proper uppercase mapping for LATIN SMALL LIGATURE FF";
64-
#?rakudo.moar todo 'Coming soon'
6561
is uniprop(0xFB00, 'Uppercase_Mapping'), "\x[0046]\x[0046]", ".uc: returns proper uppercase mapping for LATIN SMALL LIGATURE FF";
6662
is "\x[FB00]".uniname, "LATIN SMALL LIGATURE FF", "uniname: returns proper name for LATIN SMALL LIGATURE FF";
6763

@@ -74,7 +70,6 @@ is '('.uniprop('Bidi_Paired_Bracket_Type'), 'o', "'('.uniprop('Bidi_Paired_Brack
7470
is ')'.uniprop('Bidi_Paired_Bracket_Type'), 'c', "')'.uniprop('Bidi_Paired_Bracket_Type') returns 'c'";
7571

7672
## Numeric Properties
77-
#?rakudo.moar todo 'Coming soon'
7873
isa-ok "½".uniprop('Numeric_Value'), Rat, "'½'.uniprop('Numeric_Value') returns a Rat";
7974
is "½".uniprop('Numeric_Value'), 0.5, "'½'.uniprop('Numeric_Value') returns the correct number";
8075
is "a".uniprop('Numeric_Value'), NaN, "'a'.uniprop('Numeric_Value') returns NaN";

0 commit comments

Comments
 (0)