aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/type/dynamic.lux
blob: 72896124e907e0e32e341fb0bef94053e275eba4 (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
39
40
41
42
43
44
45
46
47
48
(.module:
  [library
   [lux "*"
    ["_" test {"+" [Test]}]
    [abstract
     [monad {"+" [do]}]]
    [control
     ["." try]
     ["." exception]]
    [data
     ["." text ("#\." equivalence)
      ["%" format {"+" [format]}]]]
    [math
     ["." random {"+" [Random]}]
     [number
      ["n" nat]]]]]
  [\\library
   ["." /]])

(def: .public test
  Test
  (<| (_.covering /._)
      (_.for [/.Dynamic])
      (do random.monad
        [expected random.nat]
        ($_ _.and
            (_.cover [/.:dynamic /.:static]
                     (case (/.:static Nat (/.:dynamic expected))
                       (#try.Success actual)
                       (n.= expected actual)
                       
                       (#try.Failure _)
                       false))
            (_.cover [/.wrong_type]
                     (case (/.:static Text (/.:dynamic expected))
                       (#try.Success actual)
                       false
                       
                       (#try.Failure error)
                       (exception.match? /.wrong_type error)))
            (_.cover [/.format]
                     (case (/.format (/.:dynamic expected))
                       (#try.Success actual)
                       (text\= (%.nat expected) actual)
                       
                       (#try.Failure _)
                       false))
            ))))