mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Support delayed promise execution
This commit is contained in:
parent
51c1c97fe2
commit
a35dd91a12
2 changed files with 26 additions and 5 deletions
|
@ -668,4 +668,18 @@ describe("util.promise", function ()
|
|||
assert.spy(on_rejected).was_called_with(test_error);
|
||||
end);
|
||||
end);
|
||||
describe("set_nexttick()", function ()
|
||||
it("works", function ()
|
||||
local next_tick = spy.new(function (f)
|
||||
f();
|
||||
end)
|
||||
local cb = spy.new();
|
||||
promise.set_nexttick(next_tick);
|
||||
promise.new(function (y, _)
|
||||
y("okay");
|
||||
end):next(cb);
|
||||
assert.spy(next_tick).was.called();
|
||||
assert.spy(cb).was.called_with("okay");
|
||||
end);
|
||||
end)
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue