From e6ccccf05474b935c6b8d6d2e7504824649face2 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 19 Feb 2011 06:17:08 -0800 Subject: [PATCH] * move the bson tests * include the spells tests --- scripts/e3a/modules.lua | 5 +++-- scripts/eressea/modules.lua | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/e3a/modules.lua b/scripts/e3a/modules.lua index 21bad0219..af37a3389 100644 --- a/scripts/e3a/modules.lua +++ b/scripts/e3a/modules.lua @@ -5,10 +5,11 @@ require "e3a.markets" local srcpath = config.source_dir tests = { + srcpath .. '/shared/scripts/tests/common.lua', + srcpath .. '/shared/scripts/tests/spells.lua', + srcpath .. '/shared/scripts/tests/bson.lua', srcpath .. '/eressea/scripts/tests/castles.lua', srcpath .. '/eressea/scripts/tests/morale.lua', - srcpath .. '/shared/scripts/tests/common.lua', srcpath .. '/eressea/scripts/tests/e3a.lua', srcpath .. '/eressea/scripts/tests/stealth.lua', - srcpath .. '/eressea/scripts/tests/bson.lua', } diff --git a/scripts/eressea/modules.lua b/scripts/eressea/modules.lua index b70af6e57..b04f0528b 100644 --- a/scripts/eressea/modules.lua +++ b/scripts/eressea/modules.lua @@ -17,5 +17,7 @@ require "eressea.ents" local srcpath = config.source_dir tests = { srcpath .. '/shared/scripts/tests/common.lua', + srcpath .. '/shared/scripts/tests/spells.lua', + srcpath .. '/shared/scripts/tests/bson.lua', srcpath .. '/eressea/scripts/tests/eressea.lua', }