mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.error: Cover registry initialization in test
This commit is contained in:
parent
9229c7a571
commit
dc446463ab
1 changed files with 20 additions and 0 deletions
|
@ -76,5 +76,25 @@ describe("util.error", function ()
|
|||
end);
|
||||
end)
|
||||
|
||||
describe("init", function()
|
||||
it("basics works", function()
|
||||
local reg = errors.init("test", {
|
||||
broke = {type = "cancel"; condition = "internal-server-error"; text = "It broke :("};
|
||||
nope = {type = "auth"; condition = "not-authorized"; text = "Can't let you do that Dave"};
|
||||
});
|
||||
|
||||
local broke = reg.new("broke");
|
||||
assert.equal("cancel", broke.type);
|
||||
assert.equal("internal-server-error", broke.condition);
|
||||
assert.equal("It broke :(", broke.text);
|
||||
assert.equal("test", broke.source);
|
||||
|
||||
local nope = reg.new("nope");
|
||||
assert.equal("auth", nope.type);
|
||||
assert.equal("not-authorized", nope.condition);
|
||||
assert.equal("Can't let you do that Dave", nope.text);
|
||||
end);
|
||||
end);
|
||||
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue