mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.async: tests: ensure async.once() propagates errors
This commit is contained in:
parent
38ac92b0df
commit
cdff82828c
1 changed files with 8 additions and 0 deletions
|
@ -602,5 +602,13 @@ describe("util.async", function()
|
|||
async.once(f);
|
||||
assert.spy(f).was.called();
|
||||
end);
|
||||
it("should propagate errors", function ()
|
||||
local function should_error()
|
||||
async.once(function ()
|
||||
error("hello world");
|
||||
end);
|
||||
end;
|
||||
assert.error_matches(should_error, "hello world");
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue