aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/tests.lux
blob: 12601f75b75903b2432f5691ca5de6de1468f70c (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
(;module:
  lux
  (lux (control monad)
       [io]
       (concurrency [promise])
       [cli #+ program:]
       [test])
  (test lux
        (lux ["_;" cli]
             ["_;" host]
             ["_;" io]
             ["_;" pipe]
             ["_;" lexer]
             (lexer ["_;" regex])
             (codata ["_;" cont]
                     ["_;" env]
                     ["_;" state]
                     ["_;" thunk]
                     (coll ["_;" stream]))
             (concurrency ["_;" actor]
                          ["_;" atom]
                          ["_;" frp]
                          ["_;" promise]
                          ["_;" stm])
             ["_;" effect]
             (data [bit]
                   [bool]
                   [char]
                   [error]
                   [ident]
                   [identity]
                   [log]
                   [maybe]
                   [number]
                   [product]
                   [sum]
                   [text]
                   (error [exception])
                   (format [json])
                   (coll [array]
                         [dict]
                         [list]
                         [queue]
                         [set]
                         [stack]
                         ## [vector]
                         (tree [rose]
                               [zipper]))
                   (text [format])
                   )
             ["_;" math]
             (math ["_;" ratio]
                   ["_;" complex]
                   ## ["_;" random]
                   ["_;" simple]
                   (logic ["_;" continuous]))
             ## ["_;" macro]
             (macro ["_;" ast]
                    ["_;" syntax]
                    (poly ["poly_;" eq]
                          ["poly_;" text-encoder]
                          ["poly_;" functor]))
             ["_;" type]
             (type ["_;" check]
                   ["_;" auto])
             )
        ))

## [Program]
(program: args
  (test;run))