aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/specification/lux/abstract/interval.lux
blob: 4ea7ca50ebd546c7b8c7aa0bf3bbfbaddca88a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(.using
 [library
  [lux "*"
   ["_" test {"+" Test}]
   [abstract
    [monad {"+" do}]
    ["[0]" order]]
   [math
    ["[0]" random {"+" Random}]]]]
 [\\library
  ["[0]" /]])

(def: .public (spec (open "@//[0]") gen_sample)
  (All (_ a) (-> (/.Interval a) (Random a) Test))
  (<| (_.for [/.Interval])
      (do random.monad
        [sample gen_sample]
        (all _.and
             (_.test "No value is bigger than the top."
                     (@//< @//top sample))
             (_.test "No value is smaller than the bottom."
                     (order.> @//order @//bottom sample))
             ))))