File: test.lua

package info (click to toggle)
lua-logging 1.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 512 kB
  • sloc: makefile: 16; sh: 3
file content (18 lines) | stat: -rw-r--r-- 295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

local test = {
  "generic.lua",
  "testEnv.lua",
  "testConsole.lua",
  "testFile.lua",
  "testMail.lua",
  "testSocket.lua",
  "testSQL.lua",
  "testRollingFile.lua",
}

print ("Start of Logging tests")
for _, filename in ipairs(test) do
  dofile(filename)
end
print ("End of Logging tests")