aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/world.lux
blob: 4750e03718fb73334a633981ea135f53fbf236c5 (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
(.module:
  [library
   [lux #*
    ["_" test (#+ Test)]]]
  ["." / #_
   ["#." file]
   ["#." shell]
   ["#." console]
   ["#." program]
   ["#." input #_
    ["#/." keyboard]]
   ["#." output #_
    ["#/." video #_
     ["#/." resolution]]]
   ["#." net #_
    ["#/." http #_
     ["#/." client]
     ["#/." status]]]])

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