forked from github/server
20 lines
521 B
Lua
20 lines
521 B
Lua
-- Basic test without loading XML Config. Test care about needed settings.
|
|
-- Tests are under scripts/test/ and all files must be in scripts/test/init.lua
|
|
|
|
lunit = require('lunit')
|
|
if _VERSION >= 'Lua 5.2' then
|
|
module = lunit.module
|
|
end
|
|
|
|
path = 'scripts'
|
|
if config.install then
|
|
path = config.install .. '/' .. path
|
|
end
|
|
package.path = package.path .. ';' .. path .. '/?.lua;' .. path .. '/?/init.lua'
|
|
|
|
require 'eressea'
|
|
require 'eressea.path'
|
|
require 'tests'
|
|
result = lunit.main()
|
|
return result.errors + result.failed
|