Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove tests for Callable.sort(), which is insane
  • Loading branch information
FROGGS committed Aug 16, 2015
1 parent 3a8ec6e commit cf34ae9
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions S32-list/sort.t
Expand Up @@ -46,26 +46,6 @@ plan 32;
is(@s, @e, '... with explicit spaceship');
}

#?rakudo skip "closure as non-final argument RT #124762"
#?niecza skip 'Invocant handling is NYI'
{
my @a = (2, 45, 6, 1, 3);
my @e = (1, 2, 3, 6, 45);

my @s = sort { $^a <=> $^b }: @a;
is(@s, @e, '... with closure as indirect invocant');
}

#?rakudo skip "method fallback to sub unimpl RT #124763"
#?niecza skip 'err, what?'
{
my @a = (2, 45, 6, 1, 3);
my @e = (1, 2, 3, 6, 45);

my @s = { $^a <=> $^b }.sort: @a;
is(@s, @e, '... with closure as direct invocant');
}

{
my @a = (2, 45, 6, 1, 3);
my @e = (1, 2, 3, 6, 45);
Expand Down

0 comments on commit cf34ae9

Please sign in to comment.