aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/meta/compiler.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/meta/compiler.lux')
-rw-r--r--stdlib/source/test/lux/meta/compiler.lux43
1 files changed, 21 insertions, 22 deletions
diff --git a/stdlib/source/test/lux/meta/compiler.lux b/stdlib/source/test/lux/meta/compiler.lux
index 682c7f96f..baa92d71f 100644
--- a/stdlib/source/test/lux/meta/compiler.lux
+++ b/stdlib/source/test/lux/meta/compiler.lux
@@ -31,28 +31,27 @@
"Ruby" (.,, (.these ["[1]/[0]" ruby]))
(.,, (.these))))]])))
-(`` (`` (def .public test
- Test
- (<| (_.covering /._)
- (do [! random.monad]
- [])
- (all _.and
- (_.coverage [/.Code /.Parameter /.Input]
- true)
+(`` (def .public test
+ Test
+ (<| (_.covering /._)
+ (do [! random.monad]
+ [])
+ (all _.and
+ (_.coverage [/.Code /.Parameter /.Input]
+ true)
- /arity.test
- /version.test
- /reference.test
-
- /language/lux.test
+ /arity.test
+ /version.test
+ /reference.test
+
+ /language/lux.test
- /meta.test
+ /meta.test
- /target.test
- (,, (for @.jvm (,, (these /target/jvm.test))
- @.old (,, (these /target/jvm.test))
- @.js (,, (these /target/js.test))
- @.lua (,, (these /target/lua.test))
- @.python (,, (these /target/python.test))
- @.ruby (,, (these /target/ruby.test))))
- )))))
+ /target.test
+ (,, (for @.jvm /target/jvm.test
+ @.js /target/js.test
+ @.lua /target/lua.test
+ @.python /target/python.test
+ @.ruby /target/ruby.test))
+ ))))