aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-03-23 14:51:32 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-03-23 14:51:32 +0000
commit71be50cc25544f742db2275b4621b92c4e938400 (patch)
tree44e522edc976d78ca8cf196e9722406d4eb174a4
parent3bfd3a4e9511e16d8a826cb271fc95acc2fb9845 (diff)
* Doh.
-rw-r--r--tests/lang/eval-okay-with.exp20
-rw-r--r--tests/lang/eval-okay-with.nix8
2 files changed, 8 insertions, 20 deletions
diff --git a/tests/lang/eval-okay-with.exp b/tests/lang/eval-okay-with.exp
index 033e8d3ab..2c9bd8ba0 100644
--- a/tests/lang/eval-okay-with.exp
+++ b/tests/lang/eval-okay-with.exp
@@ -1,19 +1 @@
-let {
-
- a = "xyzzy";
-
- as = {
- a = "foo";
- b = "bar";
- };
-
- bs = {
- a = "bar";
- };
-
- x = with as; a + b;
-
- y = with as; with bs; a + b;
-
- body = x + y;
-}
+Str("xyzzybarxyzzybar",[])
diff --git a/tests/lang/eval-okay-with.nix b/tests/lang/eval-okay-with.nix
index ea4ea612d..033e8d3ab 100644
--- a/tests/lang/eval-okay-with.nix
+++ b/tests/lang/eval-okay-with.nix
@@ -7,7 +7,13 @@ let {
b = "bar";
};
+ bs = {
+ a = "bar";
+ };
+
x = with as; a + b;
- body = x;
+ y = with as; with bs; a + b;
+
+ body = x + y;
}