blob: 11ff833da91daf1a6efc43097e20c16dc3de6c4d (
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
|
(.using
[library
[lux "*"
["_" test {"+" Test}]
[abstract
[monad {"+" do}]
[hash {"+" Hash}]
[\\specification
["$[0]" equivalence]
["$[0]" order]
["$[0]" hash]]]
[data
["[0]" text ("[1]#[0]" equivalence)]]
[math
["[0]" random {"+" Random}]]
[world
["[0]" file]
[net
["[0]" uri]]]]]
["[0]" / "_"
["[1][0]" extension]
["[1][0]" snapshot]
["[1][0]" time]
["[1][0]" type]
["[1][0]" versioning]]
[\\program
["[0]" /]])
(def: .public random
(Random /.Artifact)
(let [size 4]
($_ random.and
(random.ascii/lower size)
(random.ascii/lower size)
(random.ascii/lower size))))
(def: .public test
Test
(<| (_.covering /._)
(do random.monad
[sample ..random])
(_.for [/.Group /.Name /.Version
/.Artifact]
($_ _.and
(_.for [/.equivalence]
($equivalence.spec /.equivalence ..random))
(_.for [/.order]
($order.spec /.order ..random))
(_.for [/.hash]
($hash.spec /.hash ..random))
(_.cover [/.format /.identity]
(and (text.ends_with? (/.identity sample) (/.format sample))
(not (text#= (/.identity sample) (/.format sample)))))
/extension.test
/snapshot.test
/time.test
/type.test
/versioning.test
))))
|