aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-04-06 23:11:20 -0400
committerEduardo Julian2019-04-06 23:11:20 -0400
commit2a05d8f3711d2e1b6fcccd9a2869478197386a7f (patch)
tree12206ff1f282943225b795334e38c0ac1e935e77 /stdlib/source/test/lux.lux
parenta75f032ff219fdd639580455a6d3e83fd05d5592 (diff)
Moved "lux/cli", "lux/io" and "lux/function" under "lux/control".
Diffstat (limited to 'stdlib/source/test/lux.lux')
-rw-r--r--stdlib/source/test/lux.lux18
1 files changed, 7 insertions, 11 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux
index 5b45d6e5e..42f4c9f81 100644
--- a/stdlib/source/test/lux.lux
+++ b/stdlib/source/test/lux.lux
@@ -10,15 +10,16 @@
[host (#+)]])]
(.module:
["/" lux #*
- [cli (#+ program:)]
- ["." io (#+ io)]
[abstract
[monad (#+ do)]
[predicate (#+ Predicate)]]
+ [control
+ [cli (#+ program:)]
+ ["." io (#+ io)]
+ ["." function]]
[data
[number
["." i64]]]
- ["." function]
["." math]
["_" test (#+ Test)]
## These modules do not need to be tested.
@@ -110,8 +111,6 @@
]
## TODO: Must have 100% coverage on tests.
["." / #_
- ["#." cli]
- ["#." io]
["#." abstract]
["#." control]
["#." data]
@@ -353,8 +352,6 @@
..templates)
(<| (_.context "Cross-platform support.")
..cross-platform-support)
- /cli.test
- /io.test
(<| (_.context "/abstract")
/abstract.test)
(<| (_.context "/control")
@@ -362,16 +359,15 @@
(<| (_.context "/data")
/data.test)
/macro.test
- (<| (_.context "/math")
- /math.test)
+ /math.test
(<| (_.context "/time")
/time.test)
/type.test
/world.test
- (<| (_.context "/host Host-platform interoperation")
+ (<| (_.context "/host")
($_ _.and
/host.test
- (<| (_.context "/jvm JVM (Java Virtual Machine)")
+ (<| (_.context "/jvm")
/host/jvm.test)))
)))