Skip to content

Commit cf34ae9

Browse files
committed
remove tests for Callable.sort(), which is insane
1 parent 3a8ec6e commit cf34ae9

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

S32-list/sort.t

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -46,26 +46,6 @@ plan 32;
4646
is(@s, @e, '... with explicit spaceship');
4747
}
4848

49-
#?rakudo skip "closure as non-final argument RT #124762"
50-
#?niecza skip 'Invocant handling is NYI'
51-
{
52-
my @a = (2, 45, 6, 1, 3);
53-
my @e = (1, 2, 3, 6, 45);
54-
55-
my @s = sort { $^a <=> $^b }: @a;
56-
is(@s, @e, '... with closure as indirect invocant');
57-
}
58-
59-
#?rakudo skip "method fallback to sub unimpl RT #124763"
60-
#?niecza skip 'err, what?'
61-
{
62-
my @a = (2, 45, 6, 1, 3);
63-
my @e = (1, 2, 3, 6, 45);
64-
65-
my @s = { $^a <=> $^b }.sort: @a;
66-
is(@s, @e, '... with closure as direct invocant');
67-
}
68-
6949
{
7050
my @a = (2, 45, 6, 1, 3);
7151
my @e = (1, 2, 3, 6, 45);

0 commit comments

Comments
 (0)