mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.async: Add ready() to check whether running in async context
This commit is contained in:
parent
1292d83c8c
commit
b48a2409e7
2 changed files with 19 additions and 1 deletions
|
@ -579,4 +579,18 @@ describe("util.async", function()
|
|||
assert.spy(r.watchers.ready).was_not.called();
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#ready()", function ()
|
||||
it("should return false outside an async context", function ()
|
||||
assert.falsy(async.ready());
|
||||
end);
|
||||
it("should return true inside an async context", function ()
|
||||
local r = new(function ()
|
||||
assert.truthy(async.ready());
|
||||
end);
|
||||
r:run(true);
|
||||
assert.spy(r.func).was.called();
|
||||
assert.spy(r.watchers.error).was_not.called();
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue