fix broken tests (they were fixed in master, but not in develop?)

This commit is contained in:
Enno Rehling 2015-03-07 14:11:32 +01:00
parent bd11de5a96
commit 677f0903cb
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,13 @@ module ('tests.eressea.faction', package.seeall, lunit.testcase)
local f
function setup()
conf = [[{
"races": {
"human" : {}
}
}]]
eressea.config.reset()
assert(eressea.config.parse(conf)==0)
f = faction.create("faction@eressea.de", "human", "de")
assert(f~=nil)
end