diff options
author | Puck Meerburg <puck@puckipedia.com> | 2019-11-25 13:03:54 +0000 |
---|---|---|
committer | Puck Meerburg <puck@puckipedia.com> | 2019-11-25 13:03:54 +0000 |
commit | cdadbf770855e828a0f64d70a47db43e920ad137 (patch) | |
tree | 595f20cb00d76031102445c0668080de38570152 | |
parent | cd55f91ad2075d5ebb506950dfbc4161cab22db5 (diff) |
Add testcase for attrset using __overrides and dynamic attrs
-rw-r--r-- | tests/lang/eval-okay-attrs6.exp | 1 | ||||
-rw-r--r-- | tests/lang/eval-okay-attrs6.nix | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-attrs6.exp b/tests/lang/eval-okay-attrs6.exp new file mode 100644 index 000000000..b46938032 --- /dev/null +++ b/tests/lang/eval-okay-attrs6.exp @@ -0,0 +1 @@ +{ __overrides = { bar = "qux"; }; bar = "qux"; foo = "bar"; } diff --git a/tests/lang/eval-okay-attrs6.nix b/tests/lang/eval-okay-attrs6.nix new file mode 100644 index 000000000..2e5c85483 --- /dev/null +++ b/tests/lang/eval-okay-attrs6.nix @@ -0,0 +1,4 @@ +rec { + "${"foo"}" = "bar"; + __overrides = { bar = "qux"; }; +} |