blob: e570de094010f39bf154ee3b47997a1c02ddb969 (
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
54
55
|
(.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 .Nat)))
($_ _.and
($equivalence.spec /.equivalence r.nat)
($order.spec /.order r.nat)
($number.spec /.order /.number r.nat)
($enum.spec /.enum r.nat)
($interval.spec /.interval r.nat)
(<| (_.context "Addition.")
($monoid.spec /.equivalence /.addition r.nat))
(<| (_.context "Multiplication.")
($monoid.spec /.equivalence /.multiplication r.nat))
(<| (_.context "Minimum.")
($monoid.spec /.equivalence /.minimum r.nat))
(<| (_.context "Maximum.")
($monoid.spec /.equivalence /.multiplication r.nat))
(<| (_.context "Binary.")
($codec.spec /.equivalence /.binary r.nat))
(<| (_.context "Octal.")
($codec.spec /.equivalence /.octal r.nat))
(<| (_.context "Decimal.")
($codec.spec /.equivalence /.decimal r.nat))
(<| (_.context "Hexadecimal.")
($codec.spec /.equivalence /.hex r.nat))
(_.test "Alternate notations."
(and (n/= (bin "11001001")
(bin "11,00,10,01"))
(n/= (oct "615243")
(oct "615,243"))
(n/= (hex "deadBEEF")
(hex "dead,BEEF"))))
)))
|