aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-12-12 01:40:48 -0400
committerEduardo Julian2020-12-12 01:40:48 -0400
commit71ade9a07f08c0d61ebd70e64c2745f1ba33cb54 (patch)
tree736b881f4b1db0775211baa5df611b9e40abeac1 /stdlib/source/test/lux.lux
parentdff517cbdb9a1c80028782c62ad91c71ddb34909 (diff)
Removed several unnecessary imports.
Diffstat (limited to 'stdlib/source/test/lux.lux')
-rw-r--r--stdlib/source/test/lux.lux108
1 files changed, 4 insertions, 104 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux
index 7e138d33b..7b85a6ff4 100644
--- a/stdlib/source/test/lux.lux
+++ b/stdlib/source/test/lux.lux
@@ -1,16 +1,17 @@
(.module:
["/" lux #*
+ ["@" target]
[abstract
[monad (#+ do)]
[predicate (#+ Predicate)]]
[control
["." io (#+ io)]
- [function
- [mixin (#+)]]
[parser
[cli (#+ program:)]]]
[data
["." name]
+ [text
+ ["%" format (#+ format)]]
[number
["." i64]
["n" nat]
@@ -19,109 +20,8 @@
["f" frac]]]
["." math]
["_" test (#+ Test)]
- ## These modules do not need to be tested.
- [type
- [variance (#+)]]
- [locale (#+)
- [language (#+)]
- [territory (#+)]]
- ["%" data/text/format (#+ format)]
[math
- ["." random (#+ Random) ("#\." functor)]]
- ## TODO: Test these modules
- ## [data
- ## [format
- ## [css (#+)]
- ## [markdown (#+)]]]
-
- ["@" target
- ## [js (#+)]
- ## [python (#+)]
- ## [lua (#+)]
- ## [ruby (#+)]
- ## [php (#+)]
- ## [common-lisp (#+)]
- ## [scheme (#+)]
- ]
-
- ## [tool
- ## [compiler
- ## [language
- ## [lux
- ## [phase
- ## [generation
- ## [jvm (#+)]
- ## [js (#+)]
- ## ## [python (#+)]
- ## ## [lua (#+)]
- ## ## [ruby (#+)]
- ## ## [php (#+)]
- ## ## [common-lisp (#+)]
- ## ## [scheme (#+)]
- ## ]
- ## [extension
- ## [generation
- ## [jvm (#+)]
- ## [js (#+)]
- ## ## [python (#+)]
- ## ## [lua (#+)]
- ## ## [ruby (#+)]
- ## ]]
- ## ]]]]]
-
- ## [control
- ## ["._" predicate]
- ## [function
- ## ["._" contract]]
- ## [monad
- ## ["._" free]]
- ## [parser
- ## [type (#+)]]]
- ## [data
- ## ["._" env]
- ## ["._" trace]
- ## ["._" store]
- ## [format
- ## ["._" context]
- ## ["._" html]
- ## ["._" css]
- ## ["._" binary]]
- ## [collection
- ## [tree
- ## [rose
- ## ["._" parser]]]
- ## [dictionary
- ## ["._" plist]]
- ## [set
- ## ["._" multi]]]
- ## [text
- ## ["._" buffer]]]
- ## ["._" macro]
- ## [type
- ## ["._" unit]
- ## ["._" refinement]
- ## ["._" quotient]]
- ## [world
- ## ["._" environment]
- ## ["._" console]]
- ## [compiler
- ## ["._" cli]
- ## ["._" default
- ## ["._" evaluation]
- ## [phase
- ## ["._" generation]
- ## [extension
- ## ["._" directive]]]
- ## ["._default" cache]]
- ## [meta
- ## ["._meta" io
- ## ["._meta_io" context]
- ## ["._meta_io" archive]]
- ## ["._meta" archive]
- ## ["._meta" cache]]]
- ## ["._" interpreter
- ## ["._interpreter" type]]
- ]
+ ["." random (#+ Random) ("#\." functor)]]]
## TODO: Must have 100% coverage on tests.
["." / #_
["#." abstract]