util.stanza: Validate input to clone() (with brief tests)

This commit is contained in:
Kim Alvefur 2018-11-17 15:26:11 +01:00
parent 813f69fd2b
commit 50f6335501
2 changed files with 23 additions and 2 deletions

View file

@ -346,4 +346,18 @@ describe("util.stanza", function()
end, "Invalid stanza");
end);
end);
describe("#clone", function ()
it("works", function ()
local s = st.message({type="chat"}, "Hello"):reset();
local c = st.clone(s);
assert.same(s, c);
end);
it("works", function ()
assert.has_error(function ()
st.clone("this is not a stanza");
end);
end);
end);
end);