aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-06-18 14:21:41 -0400
committerEduardo Julian2021-06-18 14:21:41 -0400
commita82bd1eabe94763162c2b0707d9c198fbe9835e3 (patch)
tree032473704af6e7db41e1f6dc87ab995788d8ab17 /stdlib/source/test/aedifex/command.lux
parent519c0c0c71cdf7ce3dfc64b9781ab826760b3d94 (diff)
Refactored the machinery to make local macros into its own module.
Diffstat (limited to 'stdlib/source/test/aedifex/command.lux')
-rw-r--r--stdlib/source/test/aedifex/command.lux30
1 files changed, 18 insertions, 12 deletions
diff --git a/stdlib/source/test/aedifex/command.lux b/stdlib/source/test/aedifex/command.lux
index 0ef18f044..e0cb2da79 100644
--- a/stdlib/source/test/aedifex/command.lux
+++ b/stdlib/source/test/aedifex/command.lux
@@ -2,16 +2,19 @@
[lux #*
["_" test (#+ Test)]]
["." / #_
+ ["#." version]
+ ["#." pom]
+
["#." clean]
["#." install]
- ["#." pom]
- ["#." version]]
+
+ ["#." deps]
+ ["#." deploy]
+
+ ["#." build]
+ ["#." test]]
{#program
["." /
- ## ["#." deploy]
- ## ["#." deps]
- ## ["#." build]
- ## ["#." test]
## ["#." auto]
]})
@@ -20,13 +23,16 @@
(<| (_.covering /._)
(_.for [/.Command])
($_ _.and
+ /version.test
+ /pom.test
+
/clean.test
/install.test
- /pom.test
- /version.test
- ## /deploy.test
- ## /deps.test
- ## /build.test
- ## /test.test
+
+ /deps.test
+ /deploy.test
+
+ /build.test
+ /test.test
## /auto.test
)))