aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-11-02 17:31:39 -0400
committerEduardo Julian2020-11-02 17:31:39 -0400
commit03b1085924b225d34d3b11f1a442b0b5d926c417 (patch)
treee50b2d0947bf7aa53d2ea8321693e4c0a21836ac /stdlib/source/test/lux.lux
parent3e67e244ad1f58a7bab0094967a86be72aae2482 (diff)
Allow defining anonymous actors.
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux.lux7
1 files changed, 3 insertions, 4 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux
index 6549f9a17..809e906fb 100644
--- a/stdlib/source/test/lux.lux
+++ b/stdlib/source/test/lux.lux
@@ -138,8 +138,7 @@
["#." host]
["#." extension]
["#." target #_
- ["#/." jvm]]]
- )
+ ["#/." jvm]]])
## TODO: Get rid of this ASAP
(template: (!bundle body)
@@ -150,12 +149,12 @@
(def: identity
Test
- (do {@ random.monad}
+ (do {! random.monad}
[self (random.unicode 1)]
($_ _.and
(_.test "Every value is identical to itself."
(is? self self))
- (do @
+ (do !
[other (random.unicode 1)]
(_.test "Values created separately can't be identical."
(not (is? self other))))