diff options
Diffstat (limited to 'test/testdata/eval-okay-partition.nix')
-rw-r--r-- | test/testdata/eval-okay-partition.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-partition.nix b/test/testdata/eval-okay-partition.nix new file mode 100644 index 0000000..846d2ce --- /dev/null +++ b/test/testdata/eval-okay-partition.nix | |||
@@ -0,0 +1,5 @@ | |||
1 | with import ./lib.nix; | ||
2 | |||
3 | builtins.partition | ||
4 | (x: x / 2 * 2 == x) | ||
5 | (builtins.concatLists [ (range 0 10) (range 100 110) ]) | ||