diff options
author | Eduardo Julian | 2019-02-04 19:39:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-02-04 19:39:20 -0400 |
commit | e3acf1b94bea5460409cbd9d7cec534f34bd9037 (patch) | |
tree | 6251d37b6e34aa33ea82d5d9814c2a0e757c96f1 /stdlib/test/test/lux.lux | |
parent | cb4beecbbc4ab3ec918ab640ffb621036707678f (diff) |
Ported "lux/io" module to new test format.
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux.lux | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/stdlib/test/test/lux.lux b/stdlib/test/test/lux.lux index 0470be339..665a11e89 100644 --- a/stdlib/test/test/lux.lux +++ b/stdlib/test/test/lux.lux @@ -12,6 +12,7 @@ ["_" test (#+ Test)]] [/ ["/." cli] + ["/." io] ["/." host ["/." jvm]]]) @@ -232,11 +233,13 @@ ..template) (<| (_.context "Cross-platform support.") ..cross-platform-support) - (<| (_.context "/cli") + (<| (_.context "/cli Command-Line Interface.") /cli.test) - (<| (_.context "/host") + (<| (_.context "/io I/O (input/output)") + /io.test) + (<| (_.context "/host Host-platform interoperation") ($_ _.and /host.test - (<| (_.context "/jvm") + (<| (_.context "/jvm JVM (Java Virtual Machine)") /jvm.test))) )) |