mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Test coverage of is_stanza()
This commit is contained in:
parent
f45bf94518
commit
6c8d196c98
1 changed files with 16 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue