blob: dc04f13de42a997fcfdc4c8348639089241fd293 (
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
|
(.module:
[library
[lux #*
[program (#+ program:)]
["_" test (#+ Test)]
[control
["." io]]]]
["." / #_
["#." artifact]
["#." cli]
["#." command]
["#." dependency
["#/." deployment]
["#/." resolution]
["#/." status]]
["#." hash]
["#." input]
["#." local]
["#." metadata]
["#." package]
["#." parser]
["#." pom]
["#." profile]
["#." project]
["#." repository]
["#." runtime]])
(def: dependency
Test
($_ _.and
/dependency.test
/dependency/deployment.test
/dependency/resolution.test
/dependency/status.test
))
(def: test
Test
($_ _.and
/artifact.test
/cli.test
/command.test
..dependency
/hash.test
/input.test
/local.test
/metadata.test
/package.test
/parser.test
/pom.test
/profile.test
/project.test
/repository.test
/runtime.test
))
(program: args
(<| io.io
_.run!
(_.times 100)
..test))
|