Add new acceptance test scenario: 046

This commit is contained in:
KtorZ
2023-01-19 18:33:10 +01:00
committed by Lucas
parent e8fb386bdc
commit a178cee7bf
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
test sort_by_1() {
let xs = [[4, 3, 2, 1], [2, 3, 4, 5]]
when xs is {
[[], ys] -> True
[xs, []] -> True
[[x, ..xs2], [y, ..ys2]] -> True
_ -> True
}
}