Skip to content

Commit

Permalink
Add skipping for rakudo
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@20538 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
bacek committed May 26, 2008
1 parent f610ddc commit 566faef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions S29-array/shift.t
Expand Up @@ -43,7 +43,9 @@ plan 27;
is(shift(@shift), 1, 'inline shift(@shift) works');

is(+@shift, 3, 'we have 3 elements in our array');
#?rakudo skip 'arity trouble'
is(shift @shift, 2, 'inline shift @shift works');
#?rakudo emit shift @shift;

is(+@shift, 2, 'we have 2 elements in our array');
is(@shift.shift(), 3, 'inline @shift.shift() works');
Expand Down

0 comments on commit 566faef

Please sign in to comment.