mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
core.moduleapi: Silence strict luacheck warnings in tests
This commit is contained in:
parent
49a62a0d1e
commit
a67e816055
1 changed files with 3 additions and 3 deletions
|
@ -11,8 +11,8 @@ local api = require "core.moduleapi";
|
||||||
|
|
||||||
local module = setmetatable({}, {__index = api});
|
local module = setmetatable({}, {__index = api});
|
||||||
local opt = nil;
|
local opt = nil;
|
||||||
function module:log() end
|
function module.log(_self) end
|
||||||
function module:get_option(name)
|
function module.get_option(_self, name)
|
||||||
if name == "opt" then
|
if name == "opt" then
|
||||||
return opt;
|
return opt;
|
||||||
else
|
else
|
||||||
|
@ -20,7 +20,7 @@ function module:get_option(name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function test_option_value(value, returns)
|
local function test_option_value(value, returns)
|
||||||
opt = value;
|
opt = value;
|
||||||
assert(module:get_option_number("opt") == returns.number, "number doesn't match");
|
assert(module:get_option_number("opt") == returns.number, "number doesn't match");
|
||||||
assert(module:get_option_string("opt") == returns.string, "string doesn't match");
|
assert(module:get_option_string("opt") == returns.string, "string doesn't match");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue