aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test
diff options
context:
space:
mode:
authorEduardo Julian2019-03-14 21:34:51 -0400
committerEduardo Julian2019-03-14 21:34:51 -0400
commit9449d89f611ba3192373fdeb6848d02707ff1292 (patch)
treec84efab622a9ee54ba2f0dc46ead3082289339f7 /stdlib/source/test
parenteb37e9b2a851cab1aef7de293ec345d7925d639a (diff)
Now allowing the alias of a module to refer to the alias of an ancestor.
Diffstat (limited to 'stdlib/source/test')
-rw-r--r--stdlib/source/test/lux.lux14
-rw-r--r--stdlib/source/test/lux/control.lux32
-rw-r--r--stdlib/source/test/lux/host/jvm.jvm.lux16
3 files changed, 31 insertions, 31 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux
index 87bf92b1b..85ed47228 100644
--- a/stdlib/source/test/lux.lux
+++ b/stdlib/source/test/lux.lux
@@ -105,12 +105,12 @@
## ["._interpreter" type]]
]
## TODO: Must have 100% coverage on tests.
- [/
- ["/." cli]
- ["/." io]
- ["/." host
- ["/." jvm]]
- ["/." control]]
+ ["." / #_
+ ["#." cli]
+ ["#." io]
+ ["#." host
+ ["#/." jvm]]
+ ["#." control]]
## [control
## [concurrency
## [promise (#+)]
@@ -420,7 +420,7 @@
($_ _.and
/host.test
(<| (_.context "/jvm JVM (Java Virtual Machine)")
- /jvm.test)))
+ /host/jvm.test)))
(<| (_.context "/control")
/control.test)
))
diff --git a/stdlib/source/test/lux/control.lux b/stdlib/source/test/lux/control.lux
index 70e1dfa1d..22bd9741c 100644
--- a/stdlib/source/test/lux/control.lux
+++ b/stdlib/source/test/lux/control.lux
@@ -1,24 +1,24 @@
(.module:
[lux #*
["_" test (#+ Test)]]
- [/
- ["/." continuation]
- ["/." exception]
- ["/." interval]
- ["/." parser]
- ["/." pipe]
- ["/." reader]
- ["/." region]
- ["/." state]
- ["/." thread]
- ["/." writer]
+ ["." / #_
+ ["#." continuation]
+ ["#." exception]
+ ["#." interval]
+ ["#." parser]
+ ["#." pipe]
+ ["#." reader]
+ ["#." region]
+ ["#." state]
+ ["#." thread]
+ ["#." writer]
[concurrency
- ["/." actor]
- ["/." atom]
- ["/." frp]]
+ ["#." actor]
+ ["#." atom]
+ ["#." frp]]
[security
- ["/." privacy]
- ["/." integrity]]])
+ ["#." privacy]
+ ["#." integrity]]])
(def: concurrency
Test
diff --git a/stdlib/source/test/lux/host/jvm.jvm.lux b/stdlib/source/test/lux/host/jvm.jvm.lux
index 73cf967f9..b0655ebd3 100644
--- a/stdlib/source/test/lux/host/jvm.jvm.lux
+++ b/stdlib/source/test/lux/host/jvm.jvm.lux
@@ -23,15 +23,15 @@
["r" random]]
["_" test (#+ Test)]]
{1
- [/
- ["/." loader (#+ Library)]
- ["/." version]
- ["/." name]
- ["/." descriptor]
- ["/." field]
- ["/." class]
+ ["." / #_
+ ["#." loader (#+ Library)]
+ ["#." version]
+ ["#." name]
+ ["#." descriptor]
+ ["#." field]
+ ["#." class]
[modifier
- ["/.M" inner]]]})
+ ["#.M" inner]]]})
(def: (write-class! name bytecode)
(-> Text Binary (IO Text))