aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.scm.lux
blob: 4db2d70c0b2e733556589cf9931d3143455d85e8 (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
(.module:
  [library
   [lux "*"
    ["_" test {"+" [Test]}]
    [abstract
     [monad {"+" [do]}]]
    [control
     ["." try]]
    [data
     ["." text ("#\." equivalence)]]
    [math
     ["." random {"+" [Random]}]
     [number
      ["." nat]
      ["." frac]]]]]
  [\\library
   ["." /]])

(def: .public test
  Test
  (do [! random.monad]
    []
    (<| (_.covering /._)
        (_.test "TBD"
                true))))