File: test.lua

package info (click to toggle)
lua-logging 1.1.4-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 240 kB
  • ctags: 50
  • sloc: makefile: 20
file content (14 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

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

print ("Start of Logging tests")
table.foreachi (test, function (i, filename)
	dofile(filename)
end)
print ("End of Logging tests")