aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex.lux
blob: 3833c0828eeee2d2a1638653adfbca9fbd36e852 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
(.module:
  [lux #*
   ["_" test (#+ Test)]
   [control
    [io (#+ io)]
    [parser
     [cli (#+ program:)]]]]
  ["." / #_
   ["#." artifact]
   ["#." input]
   ["#." command #_
    ["#/." version]
    ["#/." clean]
    ["#/." pom]
    ["#/." install]
    ["#/." deploy]
    ["#/." deps]
    ["#/." build]
    ["#/." test]
    ["#/." auto]]
   ["#." local]
   ["#." dependency
    ["#/." resolution]
    ["#/." status]]
   ["#." package]
   ["#." profile]
   ["#." project]
   ["#." cli]
   ["#." hash]
   ["#." parser]
   ["#." pom]
   ["#." repository]
   ["#." runtime]
   ["#." metadata]])

(def: test
  Test
  ($_ _.and
      /artifact.test
      /input.test
      /command/version.test
      /command/clean.test
      /command/pom.test
      /command/install.test
      /command/deploy.test
      /command/deps.test
      /command/build.test
      /command/test.test
      /command/auto.test
      /local.test
      /dependency.test
      /dependency/resolution.test
      /dependency/status.test
      /package.test
      /profile.test
      /project.test
      /cli.test
      /hash.test
      /parser.test
      /pom.test
      /repository.test
      /runtime.test
      /metadata.test
      ))

(program: args
  (<| io
      _.run!
      (_.times 100)
      ..test))