Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
assorted rakudo unfudges
  • Loading branch information
moritz committed Jul 7, 2011
1 parent 9251fc3 commit a0a2a81
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion S02-literals/array-interpolation.t
Expand Up @@ -27,7 +27,6 @@ plan 12;

is ~@array, "a b c d e f g h",
"arrays with embedded array references stringify correctly (1)";
#?rakudo todo 'array stringification'
is "@array[]", "a b c d e f g h", "arrays with embedded array references stringify correctly (2)";
}

Expand Down
1 change: 0 additions & 1 deletion S04-statements/while.t
Expand Up @@ -58,7 +58,6 @@ plan 9;
}

#?mildew skip 1
#?rakudo todo 'bug'
{
my @array = 0..5;
my $str = "";
Expand Down
2 changes: 0 additions & 2 deletions S32-list/join.t
Expand Up @@ -87,13 +87,11 @@ my $undefined;
my @odd_list1 = (1, $undefined, 2, $undefined, 3);

my $joined2e = join(':', @odd_list1);
#?rakudo todo "Mu in list is not handled properly by join"
is($joined2e, "1::2::3", 'join(":", @odd_list1) works');

my @odd_list2 = (1, Mu, 2, Mu, 3);

my $joined2f = join(':', @odd_list2);
#?rakudo todo "Mu in list is not handled properly by join"
is($joined2f, "1::2::3", 'join(":", @odd_list2) works');

# should these even be tests ???
Expand Down

0 comments on commit a0a2a81

Please sign in to comment.