multigrid: add multigrid support to test infrastructure

make Screen explicitly tied to its session
This commit is contained in:
Björn Linse
2017-12-09 11:26:06 +01:00
parent f77f09ea6e
commit 1f8afe15a4
6 changed files with 171 additions and 72 deletions

View File

@@ -49,8 +49,8 @@ local check_logs_useless_lines = {
local function eq(expected, actual, ctx)
return assert.are.same(expected, actual, ctx)
end
local function neq(expected, actual)
return assert.are_not.same(expected, actual)
local function neq(expected, actual, context)
return assert.are_not.same(expected, actual, context)
end
local function ok(res)
return assert.is_true(res)