aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/meta/type/dynamic.lux
blob: 595a1da058d6f1cd8db2fb3a46a9280c3d329817 (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
(.require
 [library
  [lux (.except)
   ["_" test (.only Test)]
   [abstract
    [monad (.only do)]]
   [control
    ["[0]" try]
    ["[0]" exception]]
   [data
    ["[0]" text (.use "[1]#[0]" equivalence)
     ["%" \\format (.only format)]]]
   [math
    ["[0]" random (.only Random)]
    [number
     ["n" nat]]]]]
 [\\library
  ["[0]" /]])

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