aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/number/nat.lux
blob: 9616e9bd6e920118ddde46161a6575768d81781e (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
49
50
51
(.module:
  [lux #*
   data/text/format
   ["_" test (#+ Test)]
   [control
    [monad (#+ do)]
    {[0 #test]
     [/
      ["$." equivalence]
      ["$." order]
      ["$." number]
      ["$." enum]
      ["$." interval]
      ["$." monoid]
      ["$." codec]]}]
   [math
    ["r" random]]]
  {1
   ["." /
    //]})

(def: #export test
  Test
  (<| (_.context (%name (name-of /._)))
      (`` ($_ _.and
              ($equivalence.spec /.equivalence r.nat)
              ($order.spec /.order r.nat)
              ($number.spec /.order /.number (:: r.monad map (n/% 1,000,000) r.nat))
              ($enum.spec /.enum r.nat)
              ($interval.spec /.interval r.nat)
              (~~ (template [<monoid>]
                    [(<| (_.context (%name (name-of <monoid>)))
                         ($monoid.spec /.equivalence <monoid> r.nat))]

                    [/.addition] [/.multiplication] [/.minimum] [/.maximum]
                    ))
              (~~ (template [<codec>]
                    [(<| (_.context (%name (name-of /.binary)))
                         ($codec.spec /.equivalence <codec> r.nat))]

                    [/.binary] [/.octal] [/.decimal] [/.hex]
                    ))

              (_.test "Alternate notations."
                      (and (n/= (bin "11001001")
                                (bin "11,00,10,01"))
                           (n/= (oct "615243")
                                (oct "615,243"))
                           (n/= (hex "deadBEEF")
                                (hex "dead,BEEF"))))
              ))))