about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-intersectattrs.nix
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2022-10-13T04·04-0400
committergrfn <grfn@gws.fyi>2022-10-15T20·35+0000
commit3f45f6191d44f0abdab75f86827a8f26ff9c496f (patch)
treee0ab00465e77dc23d05224332608be198a07c2e0 /tvix/eval/src/tests/tvix_tests/eval-okay-intersectattrs.nix
parent03a3189a3d8e3e9d198ccf73bc0a836aaa6b6e3d (diff)
feat(tvix/eval): Implement builtins.intersectAttrs r/5137
Change-Id: Iaba9bcfa19f283cd0c1931be2f211e2528a1a940
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6998
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: kanepyork <rikingcoding@gmail.com>
Diffstat (limited to '')
-rw-r--r--tvix/eval/src/tests/tvix_tests/eval-okay-intersectattrs.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-intersectattrs.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-intersectattrs.nix
new file mode 100644
index 0000000000..3534132ed4
--- /dev/null
+++ b/tvix/eval/src/tests/tvix_tests/eval-okay-intersectattrs.nix
@@ -0,0 +1,3 @@
+builtins.intersectAttrs
+  { a = 1; b = 2; c = 3; }
+  { a = 100; b = 200; d = 5; }