Most tests for builtins now have `builtins.builtinName` as their name. This makes navigating the test list a bit easier Change-Id: Ief5af5c568a419bf9130601f9590e7a696b0dc0a
12 lines
232 B
Nix
12 lines
232 B
Nix
with builtins;
|
|
|
|
[ (any (x: x == 1) [])
|
|
(any (x: x == 1) [2 3 4])
|
|
(any (x: x == 1) [1 2 3 4])
|
|
(any (x: x == 1) [4 3 2 1])
|
|
(all (x: x == 1) [])
|
|
(all (x: x == 1) [1])
|
|
(all (x: x == 1) [1 2 3])
|
|
(all (x: x == 1) [1 1 1])
|
|
]
|