aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/tests.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-05-02 00:09:35 -0400
committerEduardo Julian2018-05-02 00:09:35 -0400
commite4e67f0427d93b3686366ffe9f14a4751690101e (patch)
tree22857a6ea96f97925bacc5ea2ddf71ab55207569 /stdlib/test/tests.lux
parent9906f649d26adfed5126065082fb4a7d5e4696bb (diff)
- Moved the "wrap" function into Monad, and removed Applicative from Monad's family tree.
- Moved the Free monad to its own module.
Diffstat (limited to '')
-rw-r--r--stdlib/test/tests.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux
index 71317af18..d4a0c0a32 100644
--- a/stdlib/test/tests.lux
+++ b/stdlib/test/tests.lux
@@ -27,16 +27,16 @@
["_." region])
(data ["_." bit]
["_." bool]
+ ["_." color]
["_." error]
["_." ident]
["_." identity]
+ ["_." lazy]
["_." maybe]
- ["_." number]
["_." product]
["_." sum]
["_." text]
- ["_." lazy]
- ["_." color]
+ ["_." number]
(number ["_." ratio]
["_." complex])
(format ["_." json]
@@ -69,11 +69,11 @@
(poly ["poly_." eq]
["poly_." functor]))
(type ["_." implicit]
+ ["_." resource]
(object
["_." interface]
- ["_." protocol])
- ["_." resource])
- (lang ["lang/_." syntax]
+ ["_." protocol]))
+ (lang ["_lang/." syntax]
["_." type]
(type ["_." check]))
(world ["_." blob]
@@ -82,7 +82,8 @@
["_." udp]))))
(lux (control [contract]
[concatenative]
- [predicate])
+ [predicate]
+ [monad/free])
(data [env]
[trace]
[store]
@@ -97,8 +98,7 @@
[refinement]
[quotient])
[world/env]
- [world/console])
- )
+ [world/console]))
(program: args
(test.run))