Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
rakudo unfudges
  • Loading branch information
moritz committed Jan 1, 2012
1 parent 041da7e commit d888c1c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion S03-operators/repeat.t
Expand Up @@ -42,7 +42,6 @@ is(+@foo5, 0, 'repeating negative times produces an empty list');

my @foo_2d = [1, 2] xx 2; # should create 2d
#?pugs todo 'bug'
#?rakudo todo 'over-flattening'
is(@foo_2d[1], [1, 2], 'can create 2d arrays'); # creates a flat 1d array
# Wrong/unsure: \(1, 2) does not create a ref to the array/list (1,2), but
# returns a list containing two references, i.e. (\1, \2).
Expand Down
1 change: 0 additions & 1 deletion S04-statements/gather.t
Expand Up @@ -84,7 +84,6 @@ plan 20;
}

# take on array-ref
#?rakudo todo 'nom regression'
{
my @list = gather { take [1,2,3]; take [4,5,6];};
my @list2 = ([1,2,3],[4,5,6]);
Expand Down
1 change: 0 additions & 1 deletion integration/99problems-01-to-10.t
Expand Up @@ -241,7 +241,6 @@ plan 22;
return @encoded;
}

#?rakudo todo 'unknown'
is encode(<a a a a b c c a a d e e e e>).join('+'),
'4 a+1 b+2 c+2 a+1 d+4 e',
'We should be able to run-length encode lists';
Expand Down
1 change: 0 additions & 1 deletion integration/99problems-11-to-20.t
Expand Up @@ -2,7 +2,6 @@ use v6;
use Test;
plan 31;

#?rakudo todo 'nom regression'
{
# P11 (*) Modified run-length encoding.
#
Expand Down

0 comments on commit d888c1c

Please sign in to comment.