mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.promise: Add additional test for promise.reject()
This commit is contained in:
parent
ef7d6ba99e
commit
0d3fa64b96
1 changed files with 6 additions and 0 deletions
|
@ -257,5 +257,11 @@ describe("util.promise", function ()
|
|||
assert.spy(cb).was_called(1);
|
||||
assert.spy(cb).was_called_with("foo");
|
||||
end);
|
||||
it("returns a rejected promise and does not call on_fulfilled", function ()
|
||||
local p = promise.reject("foo");
|
||||
local cb = spy.new(function () end);
|
||||
p:next(cb);
|
||||
assert.spy(cb).was_called(0);
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue