aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.php.lux
blob: 4e4537188b96395b9ac3486bd55d911a0b92cf71 (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
(.using
 [library
  [lux (.except)
   ["_" test (.only Test)]
   [abstract
    [monad (.only do)]]
   [control
    ["[0]" try]]
   [data
    ["[0]" text (.open: "[1]#[0]" equivalence)]]
   [math
    ["[0]" random (.only Random)]
    [number
     ["[0]" nat]
     ["[0]" frac]]]]]
 [\\library
  ["[0]" /]])

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