aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/artifact/type.lux
blob: fd815f19eec6382d5211469b305ec544a0d7e0d1 (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
(.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]
                     (let [options (list /.lux-library /.jvm-library /.pom)
                           uniques (set.from-list text.hash options)]
                       (n.= (list.size options)
                            (set.size uniques))))
            ))))