util.stanza: Test coverage of is_stanza()

This commit is contained in:
Kim Alvefur 2018-03-17 19:50:22 +01:00
parent f45bf94518
commit 6c8d196c98

View file

@ -198,4 +198,20 @@ describe("util.stanza", function()
end);
end);
end);
describe("#is_stanza", function ()
-- is_stanza(any) -> boolean
it("identifies stanzas as stanzas", function ()
assert.truthy(st.is_stanza(st.stanza("x")));
end);
it("identifies strings as not stanzas", function ()
assert.falsy(st.is_stanza(""));
end);
it("identifies numbers as not stanzas", function ()
assert.falsy(st.is_stanza(1));
end);
it("identifies tables as not stanzas", function ()
assert.falsy(st.is_stanza({}));
end);
end);
end);