diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-07-06T10·58+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-07-06T10·58+0000 |
commit | 5580f3817c37135dcc633d84d1360a17a8878a58 (patch) | |
tree | 6560725f4354cdfcc45f4ef8c269b9c8d2ca29ae /tests | |
parent | 56370378023fc84eb0153b991f4138f6acd011e3 (diff) |
* Test case.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lang/eval-okay-attrs4.exp | 1 | ||||
-rw-r--r-- | tests/lang/eval-okay-attrs4.nix | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-attrs4.exp b/tests/lang/eval-okay-attrs4.exp new file mode 100644 index 000000000000..1851731442d3 --- /dev/null +++ b/tests/lang/eval-okay-attrs4.exp @@ -0,0 +1 @@ +[ true false true false false true false false ] diff --git a/tests/lang/eval-okay-attrs4.nix b/tests/lang/eval-okay-attrs4.nix new file mode 100644 index 000000000000..43ec81210f38 --- /dev/null +++ b/tests/lang/eval-okay-attrs4.nix @@ -0,0 +1,7 @@ +let + + as = { x.y.z = 123; a.b.c = 456; }; + + bs = null; + +in [ (as ? x) (as ? y) (as ? x.y.z) (as ? x.y.z.a) (as ? x.y.a) (as ? a.b.c) (bs ? x) (bs ? x.y.z) ] |