aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/repository/origin.lux
blob: 238e0aad28dcfa55faf80850d9564f69ee7d2c6a (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
(.require
 [library
  [lux (.except)
   [abstract
    ["[0]" equivalence
     ["[1]T" \\test]]]
   [math
    ["[0]" random (.only Random)]]
   [test
    ["_" property (.only Test)]]]]
 [\\program
  ["[0]" /]])

(def .public random
  (Random /.Origin)
  (all random.or
       (random.alphabetic 10)
       (random.alphabetic 10)
       ))

(def .public test
  Test
  (<| (_.covering /._)
      (_.for [/.Origin]
             (all _.and
                  (_.for [/.equivalence]
                         (equivalenceT.spec /.equivalence ..random))
                  ))))