aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/eval-okay-partition.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/eval-okay-partition.nix')
-rw-r--r--test/testdata/eval-okay-partition.nix5
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 @@
1with import ./lib.nix;
2
3builtins.partition
4 (x: x / 2 * 2 == x)
5 (builtins.concatLists [ (range 0 10) (range 100 110) ])