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

(def: #export test
  Test
  (<| (_.covering /._)
      ($_ _.and
          (do random.monad
            [expected random.time]
            (_.cover [/.format /.parser]
                     (|> expected
                         /.format
                         (<text>.run /.parser)
                         (try\map (\ time.equivalence = expected))
                         (try.default false))))
          )))