aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command.lux
blob: 2169da3fa301a46774f33eee473d5c8686db84f0 (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
39
(.require
 [library
  [lux (.except)
   [test
    ["_" property (.only Test)]]]]
 ["[0]" /
  ["[1][0]" version]
  ["[1][0]" pom]

  ["[1][0]" clean]
  ["[1][0]" install]

  ["[1][0]" deps]
  ["[1][0]" deploy]

  ["[1][0]" build]
  ["[1][0]" test]
  ["[1][0]" auto]]
 [\\program
  ["[0]" /]])

(def .public test
  Test
  (<| (_.covering /._)
      (_.for [/.Command])
      (all _.and
           /version.test
           /pom.test
           
           /clean.test
           /install.test

           /deps.test
           /deploy.test

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