This is an automatically generated mail to inform you that tests are now available in t/spec/S05-match/capturing-contexts.t
commit 44dda9c33b4a3c31e60802a492ffb8ed97ccacde Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Sun Aug 8 14:54:53 2010 +0000 [t/spec] improve tests for RT #70007 git-svn-id: http://svn.pugscode.org/p...@31930 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S05-match/capturing-contexts.t b/t/spec/S05-match/capturing-contexts.t index 81683cc..a68e122 100644 --- a/t/spec/S05-match/capturing-contexts.t +++ b/t/spec/S05-match/capturing-contexts.t @@ -100,10 +100,10 @@ is_run( q{'aa' ~~ /(.)$1/}, } # RT #70003 +#?rakudo skip 'RT 70003' { - 'a' ~~ /a/; - #?rakudo skip 'RT 70003' - is ($/.orig).rindex('a'), 0, 'rindex() works on $/.orig'; + is ($/.orig).rindex('a'), 1, 'rindex() works on $/.orig'; + is ($/.orig).rindex('a', 2), 1, 'rindex() works on $/.orig'; } done_testing;