blob: 9166a4367bbfee6e5e74bc928ea0c991b2b513a9 (
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
|
(.module:
[lux #*
["_" test (#+ Test)]
[control
[io (#+ io)]
[parser
[cli (#+ program:)]]]]
["." / #_
["#." artifact]
["#." input]
["#." command #_
["#/." version]
["#/." clean]
["#/." pom]
["#/." install]
["#/." deploy]
["#/." deps]
["#/." build]
["#/." test]
["#/." auto]]
["#." local]
["#." cache]
["#." dependency
["#/." resolution]]
["#." package]
["#." profile]
["#." project]
["#." cli]
["#." hash]
["#." parser]
["#." pom]
["#." repository]
["#." runtime]])
(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
/cache.test
/dependency.test
/dependency/resolution.test
/package.test
/profile.test
/project.test
/cli.test
/hash.test
/parser.test
/pom.test
/repository.test
/runtime.test
))
(program: args
(<| io
_.run!
(_.times 100)
..test))
|