Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge tests for RT #118467.
  • Loading branch information
jnthn committed Sep 23, 2015
1 parent 442a23d commit d35c69e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions S06-multi/positional-vs-named.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 28;
plan 27;

# check the subroutine with the closest matching signature is called
#
Expand Down Expand Up @@ -65,10 +65,6 @@ is( wind('f', 'g', her => 3), 'pos f pos g her 3', 'pos, pos, named');
{
multi catch(*@all ) { 1 } #OK not used
multi catch(*@all, :$really! ) { 2 } #OK not used
#?rakudo todo 'RT #118467'
lives-ok { catch() }, # TODO: remove 'lives-ok' when this no longer dies
'required named occurring after slurpy not considered a multi candidate (temp. test)';
#?rakudo 2 skip 'slurpy and named interaction RT #118467'
is catch(0, 5), 1, 'slurpy and named interact well (1)';
is catch(0, 5, :!really), 2, 'slurpy and named interact well (2)';
}
Expand Down

0 comments on commit d35c69e

Please sign in to comment.