aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command.lux
blob: e0cb2da79c79970ab48a7bfe6d7b6937fc73711c (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
33
34
35
36
37
38
(.module:
  [lux #*
   ["_" test (#+ Test)]]
  ["." / #_
   ["#." version]
   ["#." pom]

   ["#." clean]
   ["#." install]

   ["#." deps]
   ["#." deploy]

   ["#." build]
   ["#." test]]
  {#program
   ["." /
    ## ["#." auto]
    ]})

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

          /deps.test
          /deploy.test

          /build.test
          /test.test
          ## /auto.test
          )))