Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove now passing rakudo TODOs
  • Loading branch information
moritz committed May 27, 2012
1 parent 9478f9a commit 8fc5122
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions S02-lexical-conventions/unspace.t
Expand Up @@ -230,14 +230,12 @@ eval_dies_ok('sub f { 3 } sub g { 3 }', 'semicolon or newline required between b
#'$n ++$m' should be infix:<++>
#no, really: http://irclog.perlgeek.de/perl6/2007-05-09#id_l328
$n = 1; $m = 2;
#?rakudo todo 'operaor disambiguation'
is(eval('$n ++$m'), 42, '$n ++$m with infix:<++> is $n ++ $m');
is($n, 1, 'check $n');
is($m, 2, 'check $m');

#'$n ++ $m' should be infix:<++>
$n = 1; $m = 2;
#?rakudo todo 'operaor disambiguation'
is(eval('$n ++ $m'), 42, 'postfix requires no space w/ infix ambiguity');
is($n, 1, 'check $n');
is($m, 2, 'check $m');
Expand Down
1 change: 0 additions & 1 deletion S03-metaops/hyper.t
Expand Up @@ -736,7 +736,6 @@ my @e;

# RT #77010

#?rakudo todo 'RT 77010 - use hypers with local scoped user-defined operators'
{
# niecza doesn't propagate slangs into &eval yet
eval_lives_ok 'sub infix:<+++>($a, $b) { ($a + $b) div 2 }; 10 >>+++<< 14', 'can use hypers with local scoped user-defined operators';
Expand Down
1 change: 0 additions & 1 deletion S05-mass/rx.t
Expand Up @@ -92,7 +92,6 @@ ok 'xyzabcde' !~~ /[ ab | abc ]: de/, 'no backtrack into group';

#### ( ab | abc ): de xyzabcde n no backtrack into subpattern
#?niecza todo ''
#?rakudo todo ':'
ok 'xyzabcde' !~~ /( ab | abc ): de/, 'no backtrack into subpattern';

#### [ when <commit> ever ] | whence whence n full backtrack failure
Expand Down
1 change: 0 additions & 1 deletion S06-operator-overloading/sub.t
Expand Up @@ -304,7 +304,6 @@ Testing operator overloading subroutines
multi sub infix:<+=> (Int $a is rw, Int $b) { $a -= $b }
my $frew = 10;
$frew += 5;
#?rakudo todo 'meta ops'
is $frew, 5, 'infix redefinition of += works';
}
Expand Down

0 comments on commit 8fc5122

Please sign in to comment.