aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/test/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-02-02 22:49:34 -0400
committerEduardo Julian2019-02-02 22:49:34 -0400
commit7ac55278171d8e5353c44974228e356eb45ec225 (patch)
treee53290cb154fb47a4d8c02912bbc905bad5eab6e /stdlib/test/test/lux.lux
parent8f5956bd29d9c5fad0a1773b3a0592792fc22bad (diff)
Ported some old tests to the new format.
Diffstat (limited to '')
-rw-r--r--stdlib/test/test/lux.lux13
1 files changed, 12 insertions, 1 deletions
diff --git a/stdlib/test/test/lux.lux b/stdlib/test/test/lux.lux
index 0ed5cbc2a..4be4b753b 100644
--- a/stdlib/test/test/lux.lux
+++ b/stdlib/test/test/lux.lux
@@ -9,7 +9,11 @@
["." i64]]]
["." math
["r" random (#+ Random) ("r/." Functor<Random>)]]
- ["_" test (#+ Test)]])
+ ["_" test (#+ Test)]]
+ [/
+ ["/." cli]
+ ["/." host
+ ["/." jvm]]])
(def: identity
Test
@@ -237,4 +241,11 @@
..template)
(<| (_.context "Cross-platform support.")
..cross-platform-support)
+ (<| (_.context "/cli")
+ /cli.test)
+ (<| (_.context "/host")
+ ($_ _.and
+ /host.test
+ (<| (_.context "/jvm")
+ /jvm.test)))
))