Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
niecza fudging
  • Loading branch information
coke committed Oct 23, 2011
1 parent 02c1b47 commit 1c1df5b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions S03-operators/inplace.t
Expand Up @@ -18,13 +18,10 @@ plan 28;
#?rakudo todo 'nom regression'
{
my @b = <foo 123 bar 456 baz>;
#?niecza todo
lives_ok { @b.=grep(/<[a..z]>/)},
'.= works without surrounding whitespace';
is @b[0], 'foo', 'inplace grep [0]';
#?niecza todo
is @b[1], 'bar', 'inplace grep [1]';
#?niecza todo
is @b[2], 'baz', 'inplace grep [2]';
}

Expand Down
1 change: 1 addition & 0 deletions S06-signature/passing-arrays.t
Expand Up @@ -34,6 +34,7 @@ plan 11;
dies_ok { eval('pa(3)') }, 'non-slurpy array does not take a single Int';

sub ph(%h) { 1 } #OK not used
#?niecza todo
dies_ok { eval('ph(3)') }, 'an Int is not a Hash';
}

Expand Down
2 changes: 1 addition & 1 deletion S32-str/substr.t
Expand Up @@ -357,7 +357,7 @@ sub p (Int $a) { my $p = $a; return $p }
is("砖讬注讘讜讚 讻讘专".substr(4, p(4)), "讜讚 讻", ".substr on Hebrew text (substr(Int, StrPos)).");
}

#?niecza todo
eval_dies_ok 'substr(Any, 0)', 'substr needs Cool as argument';


# vim: ft=perl6

0 comments on commit 1c1df5b

Please sign in to comment.