aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/number/rev.lux
blob: 9b25ae6af08308448f75c21286fde2de06a0d226 (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
52
53
(.module:
  [lux #*
   ["%" data/text/format (#+ format)]
   ["_" test (#+ Test)]
   [abstract
    [monad (#+ do)]
    {[0 #test]
     [/
      ["$." equivalence]
      ["$." order]
      ["$." number]
      ["$." enum]
      ["$." interval]
      ["$." monoid]
      ["$." codec]]}]
   [data
    ["." error]
    [number
     ["." i64]]]
   [math
    ["r" random]]]
  {1
   ["." /
    //]})

(def: #export test
  Test
  (<| (_.context (%.name (name-of /._)))
      (`` ($_ _.and
              ($equivalence.spec /.equivalence r.rev)
              ($order.spec /.order r.rev)
              ($enum.spec /.enum r.rev)
              ($interval.spec /.interval r.rev)
              (~~ (template [<monoid>]
                    [(<| (_.context (%.name (name-of <monoid>)))
                         ($monoid.spec /.equivalence <monoid> r.rev))]

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

                    [/.binary] [/.octal] [/.decimal] [/.hex]
                    ))
              (_.test "Alternate notations."
                      (and (r/= (bin ".11001001")
                                (bin ".11,00,10,01"))
                           (r/= (oct ".615243")
                                (oct ".615,243"))
                           (r/= (hex ".deadBEEF")
                                (hex ".dead,BEEF"))))
              ))))