aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/artifact/value.lux
blob: 10e9016b1a24900ba3e24a54342e1745aba23870 (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
(.module:
  [lux #*
   ["_" test (#+ Test)]
   [abstract
    [monad (#+ do)]
    {[0 #spec]
     [/
      ["$." equivalence]]}]
   [control
    ["." try ("#\." functor)]
    [parser
     ["<.>" text]]]
   [math
    ["." random (#+ Random)]
    [number
     ["n" nat]
     ["i" int]]]
   [time
    ["." instant]]]
  {#program
   ["." /]})

(def: #export random
  (Random /.Value)
  ($_ random.and
      (random.ascii/alpha 5)
      random.instant
      random.nat
      ))

(def: #export test
  Test
  (<| (_.covering /._)
      (_.for [/.Build /.Value])
      ($_ _.and
          (_.for [/.equivalence]
                 ($equivalence.spec /.equivalence ..random))
          )))