aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/tests.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/test/tests.lux')
-rw-r--r--stdlib/test/tests.lux24
1 files changed, 13 insertions, 11 deletions
diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux
index a5c6919c5..738ef182b 100644
--- a/stdlib/test/tests.lux
+++ b/stdlib/test/tests.lux
@@ -1,7 +1,8 @@
(.module:
[lux #*
[cli (#+ program:)]
- ["." test]
+ ["." io (#+ io)]
+ ["_" test]
## These modules do not need to be tested.
[type
@@ -81,12 +82,11 @@
]
## TODO: Must have 100% coverage on tests.
[test
- ## [lux (#+)]
- [lux
+ ["/." lux
## [cli (#+)]
## [host (#+)]
- [host
- [jvm (#+)]]
+ ## [host
+ ## [jvm (#+)]]
## [io (#+)]
## [time
## [instant (#+)]
@@ -164,11 +164,11 @@
## [poly
## ["poly_." equivalence]
## ["poly_." functor]]]
- [type ## (#+)
- ## [check (#+)]
- ## [implicit (#+)] ## TODO: FIX Specially troublesome...
- ## [resource (#+)]
- [dynamic (#+)]]
+ ## [type ## (#+)
+ ## ## [check (#+)]
+ ## ## [implicit (#+)] ## TODO: FIX Specially troublesome...
+ ## ## [resource (#+)]
+ ## [dynamic (#+)]]
## [compiler
## [default
## ["_default/." syntax]
@@ -196,4 +196,6 @@
)
(program: args
- (test.run))
+ (exec (_.run! (<| (_.times 100)
+ /lux.test))
+ (io [])))