aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/artifact/type.lux
blob: 0d8284d7c13fdb944b095f91cf7ca284f40b7a89 (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
(.module:
  [lux #*
   ["_" test (#+ Test)]
   [abstract
    [monad (#+ do)]]
   [data
    ["." text]
    [number
     ["n" nat]]
    [collection
     ["." set]
     ["." list]]]
   [math
    ["." random (#+ Random)]]]
  {#program
   ["." /]})

(def: #export test
  Test
  (<| (_.covering /._)
      (_.with-cover [/.Type]
        ($_ _.and
            (_.cover [/.lux-library /.jvm-library
                      /.pom /.md5 /.sha-1]
                     (let [options (list /.lux-library /.jvm-library
                                         /.pom /.md5 /.sha-1)
                           uniques (set.from-list text.hash options)]
                       (n.= (list.size options)
                            (set.size uniques))))
            ))))