aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/concurrency/space.lux23
-rw-r--r--stdlib/test/tests.lux2
2 files changed, 0 insertions, 25 deletions
diff --git a/stdlib/test/test/lux/concurrency/space.lux b/stdlib/test/test/lux/concurrency/space.lux
deleted file mode 100644
index dd295501e..000000000
--- a/stdlib/test/test/lux/concurrency/space.lux
+++ /dev/null
@@ -1,23 +0,0 @@
-(.module:
- lux
- (lux (control [monad #+ do])
- (concurrency ["T" task]
- ["A" actor #+ actor:]
- ["S" space #+ on:])
- [io]))
-
-(type: Move
- #Ping
- #Pong)
-
-(A.actor: #export Player {}
- {#hits Nat})
-
-(on: Player Move (reply! who where what state self)
- (do @
- [_ (S.emit (case what
- #Ping #Pong
- #Pong #Ping)
- where
- self)]
- (wrap (update@ #hits n/inc state))))
diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux
index 9a0fedbb8..899582b54 100644
--- a/stdlib/test/tests.lux
+++ b/stdlib/test/tests.lux
@@ -10,7 +10,6 @@
["_." duration]
["_." date])
(concurrency ["_." actor]
- ["_." space]
["_." atom]
["_." frp]
["_." promise]
@@ -75,7 +74,6 @@
))
(lux (control [contract]
[concatenative])
- (concurrency [space])
(data [env]
[trace]
[store]