blob: c3da8465c98fa7613d0b5d2751aaa3a1f774616e (
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
|
(.module:
[lux #*
["_" test (#+ Test)]
[abstract
[monad (#+ do)]]
[data
["." text ("#@." equivalence)]
[number
["n" nat]]
[collection
["." set]
["." list]]]
[math
["." random (#+ Random)]]]
{#program
["." /
["/#" // #_
["#" type]]]})
(def: #export test
Test
(<| (_.covering /._)
(_.with-cover [/.Extension]
($_ _.and
(_.cover [/.lux-library /.jvm-library /.pom
/.sha-1 /.md5]
(let [options (list /.lux-library /.jvm-library /.pom /.sha-1 /.md5)
uniques (set.from-list text.hash options)]
(n.= (list.size options)
(set.size uniques))))
(_.cover [/.extension]
(`` (and (~~ (template [<type> <extension>]
[(text@= <extension>
(/.extension <type>))]
[//.lux-library /.lux-library]
[//.jvm-library /.jvm-library]
[//.pom /.pom]
)))))
))))
|