util.stanza: Check that argument to reply is a stanza

This commit is contained in:
Kim Alvefur 2019-11-25 20:44:05 +01:00
parent 10aa40227b
commit b340e5e462
2 changed files with 9 additions and 0 deletions

View file

@ -170,6 +170,12 @@ describe("util.stanza", function()
assert.are.equal(r.attr.type, "result");
assert.are.equal(#r.tags, 0, "A reply should not include children of the original stanza");
end);
it("should reject not-stanzas", function ()
assert.has.error_match(function ()
st.reply(not "a stanza");
end, "expected stanza");
end);
end);
describe("#error_reply()", function()