aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-04 12:49:52 -0400
committerEduardo Julian2021-09-04 12:49:52 -0400
commitfc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch)
tree24858adac0e67228620b7e9166e3b7335be9fd5a /stdlib/source/test/lux.lux
parent891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff)
De-taggification | part 2
Diffstat (limited to 'stdlib/source/test/lux.lux')
-rw-r--r--stdlib/source/test/lux.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux
index bdc83f437..25e19caa8 100644
--- a/stdlib/source/test/lux.lux
+++ b/stdlib/source/test/lux.lux
@@ -4,38 +4,38 @@
<target> <target>']
(.module:
[library
- ["/" lux #*
- [program (#+ program:)]
- ["_" test (#+ Test)]
+ ["/" lux "*"
+ [program {"+" [program:]}]
+ ["_" test {"+" [Test]}]
["@" target]
[abstract
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[control
["." io]
["." maybe ("#\." functor)]
[concurrency
- ["." atom (#+ Atom)]]
+ ["." atom {"+" [Atom]}]]
[parser
["<.>" code]]]
[data
["." product]
["." bit ("#\." equivalence)]
["." text ("#\." equivalence)
- ["%" format (#+ format)]]
+ ["%" format {"+" [format]}]]
[collection
["." list ("#\." functor)]
- ["." set (#+ Set) ("#\." equivalence)]
+ ["." set {"+" [Set]} ("#\." equivalence)]
[dictionary
["." plist]]]]
["." macro
- [syntax (#+ syntax:)]
+ [syntax {"+" [syntax:]}]
["." code ("#\." equivalence)]
["." template]]
["." math
["." random ("#\." functor)]
[number
- [i8 (#+)]
- [i16 (#+)]
+ [i8 {"+" []}]
+ [i16 {"+" []}]
["n" nat]
["i" int]
["r" rev]
@@ -44,7 +44,7 @@
["." meta
["." location ("#\." equivalence)]]]]
... TODO: Must have 100% coverage on tests.
- ["." / #_
+ ["." / "_"
["#." abstract]
["#." control]
["#." data]
@@ -65,7 +65,7 @@
["#." world]
["#." ffi]
["#." extension]
- ["#." target #_
+ ["#." target "_"
<target>]]))
... TODO: Get rid of this ASAP