aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command.lux
blob: 0ef18f044285e299b667488956db55ca33def187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(.module:
  [lux #*
   ["_" test (#+ Test)]]
  ["." / #_
   ["#." clean]
   ["#." install]
   ["#." pom]
   ["#." version]]
  {#program
   ["." /
    ## ["#." deploy]
    ## ["#." deps]
    ## ["#." build]
    ## ["#." test]
    ## ["#." auto]
    ]})

(def: #export test
  Test
  (<| (_.covering /._)
      (_.for [/.Command])
      ($_ _.and
          /clean.test
          /install.test
          /pom.test
          /version.test
          ## /deploy.test
          ## /deps.test
          ## /build.test
          ## /test.test
          ## /auto.test
          )))