aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-01-08 16:16:08 +0100
committerKim Alvefur <zash@zash.se>2016-01-08 16:16:08 +0100
commitebdebb946d9d2c501c0fe7d76d57798ab60e3ff9 (patch)
treefa735fdc4d7fd7f7b8f14ea5dc1e5a86a0ca5dde /tests
parentb057664428d529b182ac9a69800402d2f517b43b (diff)
parent224a98b2c63864a480ca38056ea945f92e8122b8 (diff)
downloadprosody-ebdebb946d9d2c501c0fe7d76d57798ab60e3ff9.tar.gz
prosody-ebdebb946d9d2c501c0fe7d76d57798ab60e3ff9.zip
Merge 0.9->0.10
Diffstat (limited to 'tests')
-rw-r--r--tests/test.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 1666fcf5..5d5851e1 100644
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -14,6 +14,7 @@ function run_all_tests()
dotest "util.multitable"
dotest "util.rfc6724"
dotest "util.http"
+ dotest "core.modulemanager"
dotest "core.stanza_router"
dotest "core.s2smanager"
dotest "core.configmanager"
@@ -140,9 +141,12 @@ function dotest(unitname)
end
local oldmodule, old_M = _fakeG.module, _fakeG._M;
- _fakeG.module = function () _M = unit end
+ _fakeG.module = function ()
+ setmetatable(unit, nil);
+ unit._M = unit;
+ end
setfenv(chunk, unit);
- local success, ret = pcall(chunk);
+ local success, err = pcall(chunk);
_fakeG.module, _fakeG._M = oldmodule, old_M;
if not success then
print("WARNING: ", "Failed to initialise module: "..unitname, err);