Skip to content

Commit 2be99bc

Browse files
committed
Unfudge a bunch of NFG tests for rakudo.moar.
1 parent ea19778 commit 2be99bc

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

S02-types/unicode.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ is "foo\r\nbar".codes, 8, 'CRLF is 2 codes';
1414
#?rakudo skip 'graphs NYI'
1515
is "foo\r\nbar".graphs, 7, 'CRLF is 1 graph';
1616

17-
#?rakudo todo "RT #65170"
17+
#?rakudo.jvm todo "NFG on JVM"
1818
is $u.chars, 1, '.chars defaults to .graphs';
1919

2020
# RT #65170
21-
#?rakudo todo "RT #65170"
21+
#?rakudo.jvm todo "NFG on JVM"
2222
{
2323
my $rt65170;
2424

S15-string-types/Str.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ is "ẛ̣".WHAT, Str, "Strings are of type Str by default.";
99
#?niecza 1 skip ':nfg adverb NYI'
1010
is qq:nfg/ẛ̣/.WHAT, Str, ":nfg adverb on quoteforms results in Str.";
1111
12-
#?rakudo todo "NYI"
12+
#?rakudo.jvm todo "NFG on JVM"
1313
is "ẛ̣".chars, 1, "Str.chars returns number of graphemes.";
1414
#?rakudo 1 skip 'Str.graphs NYI'
1515
is "ẛ̣".graphs, 1, "Str.graphs returns number of graphemes.";

S32-str/capitalize.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ is "ab cD Ef".wordcase, "Ab Cd Ef", "works on ordinary string";
3131
# Non-ASCII chars:
3232
is wordcase("äöü abcä"), "Äöü Abcä", "wordcase() works on non-ASCII chars";#
3333

34-
#?rakudo 2 todo 'graphemes results wrong'
34+
#?rakudo.jvm 2 todo 'NFG on JVM'
3535
#?niecza 2 todo 'charspec'
36-
is wordcase("a\c[COMBINING DIAERESIS]üö abcä"), "Äöü Abcä", 'wordcase on string with grapheme precomposed';
36+
is wordcase("a\c[COMBINING DIAERESIS]üö abcä"), "Äüö Abcä", 'wordcase on string with grapheme precomposed';
3737
is wordcase("a\c[COMBINING DOT ABOVE, COMBINING DOT BELOW] bc"),
3838
"A\c[COMBINING DOT BELOW, COMBINING DOT ABOVE] Bc",
3939
"wordcase on string with grapheme without precomposed";

S32-str/comb.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ is "a\nb".comb, ('a', "\n", 'b'), 'comb on string with \n';
1616

1717
is "äbcd".comb, <ä b c d>, 'comb on string with non-ASCII letter';
1818

19-
#?rakudo 2 todo 'graphemes NYI'
19+
#?rakudo.jvm 2 todo 'NFG on JVM'
2020
#?niecza 2 todo 'charspec'
2121
is "a\c[COMBINING DIAERESIS]b".comb, ("ä", "b",), 'comb on string with grapheme precomposed';
2222
is( "a\c[COMBINING DOT ABOVE, COMBINING DOT BELOW]b".comb,

S32-str/flip.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ is( 'Hello World !'.flip.flip, 'Hello World !',
2626
is( '䀻«'.flip, '«»€ä', "some unicode characters" );
2727

2828
#?niecza 2 todo 'graphemes NYI'
29-
#?rakudo 2 todo 'graphemes NYI'
29+
#?rakudo.jvm 2 todo 'NFG on JVM'
3030
is( "a\c[COMBINING DIAERESIS]b".flip, '', "grapheme precomposed" );
3131
is( "a\c[COMBINING DOT ABOVE, COMBINING DOT BELOW]b".flip,
3232
"ba\c[COMBINING DOT ABOVE, COMBINING DOT BELOW]",

0 commit comments

Comments
 (0)