aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/world.lux
blob: 19576d27d689943755680e1fff11c51a53a7dace (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
(.require
 [library
  [lux (.except)
   ["_" test (.only Test)]]]
 ["[0]" /
  ["[1][0]" file]
  ["[1][0]" shell]
  ["[1][0]" console]
  ["[1][0]" program]
  ["[1][0]" input
   ["[1]/[0]" keyboard]]
  ["[1][0]" output
   ["[1]/[0]" video
    ["[1]/[0]" resolution]]]
  ["[1][0]" net
   ["[1]/[0]" http
    ["[1]/[0]" client]
    ["[1]/[0]" status]]]])

(def .public test
  Test
  (all _.and
       /file.test
       /shell.test
       /console.test
       /program.test
       /input/keyboard.test
       /output/video/resolution.test
       /net/http/client.test
       /net/http/status.test
       ))