mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pubsub: Signal that 'persistent-items' is unsupported when disabled
XEP-0060 says that this the way to indicate that 'persistent-items' is unsupported, but doesn't explicitly say if it being disabled in the node configuration also counts as unsupported.
This commit is contained in:
parent
1603e003b1
commit
dfed446a5a
3 changed files with 7 additions and 5 deletions
|
@ -523,8 +523,8 @@ describe("util.pubsub", function ()
|
|||
assert.spy(broadcaster).was_called();
|
||||
|
||||
local ok, items = service:get_items("node", true);
|
||||
assert.truthy(ok);
|
||||
assert.same(items, {});
|
||||
assert.not_truthy(ok);
|
||||
assert.equal(items, "persistent-items-unsupported");
|
||||
end);
|
||||
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue