aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/operators.nom10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/operators.nom b/tests/operators.nom
index 6a749d8..b3853e9 100644
--- a/tests/operators.nom
+++ b/tests/operators.nom
@@ -19,18 +19,18 @@ assume (({}'s id) is not ({}'s id)) or barf "Identity check failed."
<-{%foozle:"outer",%y:"outer"}
action [set global x local y]
- export %foozle <- "inner"
+ external %foozle <- "inner"
%y <- "inner"
set global x local y
-assume ((%foozle = "inner") and (%y = "outer")) or barf "export failed."
+assume ((%foozle = "inner") and (%y = "outer")) or barf "external failed."
<-{%foozle:"outer",%y:"outer"}
action [set global x local y]
- exporting [%foozle]
+ with external [%foozle]
%foozle <- "inner"
%y <- "inner"
set global x local y
-assume ((%foozle = "inner") and (%y = "outer")) or barf "exporting failed."
+assume ((%foozle = "inner") and (%y = "outer")) or barf "'with external' failed."
<-{%x:1,%y:2}
with {%z:nil, %x:999}
@@ -45,7 +45,7 @@ assume ((5 wrapped around 2) = 1) or barf "mod not working"
assume (1 <= 2 < 3) or barf "chained operator fail."
%value <- -999
action [flipflop]
- export %value <- (-%value)
+ external %value <- (-%value)
return %value
assume (not (1 < (flipflop) < 1)) or barf "3-way inequality evaluated middle term twice"
assume (((yes) and (yes)) = (yes))