@@ -51,17 +51,13 @@ is 'a'.uniprop('Script'), 'Latin', ".uniprop('Script') returns correct result fo
51
51
like ' a' . uniprop (' Age' ), /'1.1' /, " 'a'.uniprop('Age') looks like /'1.1'/" ;
52
52
# ?rakudo.moar todo 'Unicode 1 names NYI in MoarVM'
53
53
is ' ¶' . uniprop (' Unicode_1_Name' ), " PARAGRAPH SIGN" , " ¶.uniprop('Unicode_1_Name') returns Unicode 1 name" ;
54
- # ?rakudo.moar todo 'Coming soon'
55
54
is uniprop (0xFB00 , ' Name' ), " LATIN SMALL LIGATURE FF" , " uniprop: returns proper name for LATIN SMALL LIGATURE FF" ;
56
55
57
56
is " \x [ FB00] " . lc , " \x [ FB00] " , " .lc: returns proper lowercase mapping for LATIN SMALL LIGATURE FF" ;
58
- # ?rakudo.moar todo 'Coming soon'
59
57
is uniprop (0xFB00 , ' Lowercase_Mapping' ), " \x [ FB00] " , " uniprop: returns proper lowercase mapping for LATIN SMALL LIGATURE FF" ;
60
58
is " \x [ FB00] " . tc, " \x [ 0046] \x [ 0066] " , " .tc: returns proper lowercase mapping for LATIN SMALL LIGATURE FF" ;
61
- # ?rakudo.moar todo 'Coming soon'
62
59
is uniprop (0xFB00 , ' Titlecase_Mapping' ), " \x [ 0046] \x [ 0066] " , " uniprop: returns proper titlecase mapping for LATIN SMALL LIGATURE FF" ;
63
60
is " \x [ FB00] " . uc , " \x [ 0046] \x [ 0046] " , " .uc: returns proper uppercase mapping for LATIN SMALL LIGATURE FF" ;
64
- # ?rakudo.moar todo 'Coming soon'
65
61
is uniprop (0xFB00 , ' Uppercase_Mapping' ), " \x [ 0046] \x [ 0046] " , " .uc: returns proper uppercase mapping for LATIN SMALL LIGATURE FF" ;
66
62
is " \x [ FB00] " . uniname , " LATIN SMALL LIGATURE FF" , " uniname: returns proper name for LATIN SMALL LIGATURE FF" ;
67
63
@@ -74,7 +70,6 @@ is '('.uniprop('Bidi_Paired_Bracket_Type'), 'o', "'('.uniprop('Bidi_Paired_Brack
74
70
is ' )' . uniprop (' Bidi_Paired_Bracket_Type' ), ' c' , " ')'.uniprop('Bidi_Paired_Bracket_Type') returns 'c'" ;
75
71
76
72
# # Numeric Properties
77
- # ?rakudo.moar todo 'Coming soon'
78
73
isa-ok " ½" . uniprop (' Numeric_Value' ), Rat , " '½'.uniprop('Numeric_Value') returns a Rat" ;
79
74
is " ½" . uniprop (' Numeric_Value' ), 0.5 , " '½'.uniprop('Numeric_Value') returns the correct number" ;
80
75
is " a" . uniprop (' Numeric_Value' ), NaN , " 'a'.uniprop('Numeric_Value') returns NaN" ;
0 commit comments