mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.async: Add test to ensure waiters throw an error outside async contexts
This commit is contained in:
parent
b0211d2247
commit
2f1f98e1b5
1 changed files with 5 additions and 0 deletions
|
@ -84,6 +84,11 @@ describe("util.async", function()
|
|||
end);
|
||||
end);
|
||||
describe("#waiter", function()
|
||||
it("should error outside of async context", function ()
|
||||
assert.has_error(function ()
|
||||
async.waiter();
|
||||
end);
|
||||
end);
|
||||
it("should work", function ()
|
||||
local wait, done;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue