Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fudge tests for JVM RT #126700
  • Loading branch information
usev6 committed Nov 21, 2015
1 parent e2174a8 commit dd9eda9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion S32-str/index.t
Expand Up @@ -76,7 +76,12 @@ ok 1234.index(3) == 2, '.index on non-strings (here: Int)';

# RT #125784
{
for -1e34, -1e35, 1e34, 1e35 -> $pos {
for -1e34, -1e35 -> $pos {
#?rakudo.jvm 2 todo 'RT #126700'
is index( 'xxy','y', $pos ), Nil, "sub does $pos give Nil";
is 'xxy'.index( 'y', $pos ), Nil, "method does $pos give Nil";
}
for 1e34, 1e35 -> $pos {
is index( 'xxy','y', $pos ), Nil, "sub does $pos give Nil";
is 'xxy'.index( 'y', $pos ), Nil, "method does $pos give Nil";
}
Expand Down

0 comments on commit dd9eda9

Please sign in to comment.