mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.stanza: Remove redundant check for attrs
A stanza can't not have attrs if created the correct way
This commit is contained in:
parent
b340e5e462
commit
11095184a5
2 changed files with 8 additions and 1 deletions
|
@ -176,6 +176,13 @@ describe("util.stanza", function()
|
|||
st.reply(not "a stanza");
|
||||
end, "expected stanza");
|
||||
end);
|
||||
|
||||
it("should reject not-stanzas", function ()
|
||||
assert.has.error_match(function ()
|
||||
st.reply({name="x"});
|
||||
end, "expected stanza");
|
||||
end);
|
||||
|
||||
end);
|
||||
|
||||
describe("#error_reply()", function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue