diff --git a/S32-str/rindex.t b/S32-str/rindex.t index 359fc05458..6894e231ac 100644 --- a/S32-str/rindex.t +++ b/S32-str/rindex.t @@ -51,7 +51,6 @@ is(rindex("Ümlaut", "Ü"), 0, "Umlaut"); is(rindex("what are these « » unicode characters for ?", "uni"), 19, "over unicode characters"); # .rindex use -#?rakudo todo 'nom regression' is("Hello World".rindex("l"), 9, ".rindex on string"); #?rakudo todo 'nom regression' is("Hello World".rindex(''), 11, ".rindex('') on string gives string length in bytes"); @@ -59,19 +58,15 @@ is("Hello World".rindex(''), 11, ".rindex('') on string gives string length in b # on scalar variable my $s = "Hello World"; is(rindex($s, "o"), 7, "rindex on scalar variable"); -#?rakudo todo 'nom regression' is($s.rindex("o"), 7, ".rindex on scalar variable"); is(rindex(uc($s), "O"), 7, "rindex on uc"); -#?rakudo todo 'nom regression' is($s.uc.rindex("O"), 7, ".uc.rindex "); # ideas for deeper chained . calls ? -#?rakudo todo 'nom regression' is($s.lc.ucfirst.rindex("w"), 6, ".lc.ucfirst.rindex"); # rindex on non-strings -#?rakudo todo 'nom regression' ok 3459.rindex(5) == 2, 'rindex on integers'; # vim: ft=perl6