aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/tool/compiler/version.lux
blob: 695c36644edb9f829636a926c647f6b034299b04 (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
(.using
 [library
  [lux (.except)
   ["_" test (.only Test)]
   [abstract
    [monad (.only do)]]
   [data
    ["[0]" bit (.open: "[1]#[0]" equivalence)]
    ["[0]" text (.open: "[1]#[0]" equivalence)
     ["%" \\format (.only format)]]]
   [math
    ["[0]" random (.only Random)]
    [number
     ["n" nat]]]]]
 [\\library
  ["[0]" /]])

(def .public random
  (Random /.Version)
  random.nat)

(def .public test
  Test
  (<| (_.covering /._)
      (_.for [/.Version])
      (do [! random.monad]
        [this ..random
         that ..random]
        (`` (all _.and
                 (_.coverage [/.format]
                   (bit#= (n.= this that)
                          (text#= (/.format this) (/.format that))))
                 (~~ (with_template [<level>]
                       [(_.coverage [<level>]
                          (text.contains? (%.nat (<level> this))
                                          (/.format this)))]

                       [/.patch]
                       [/.minor]
                       [/.major]))
                 )))))