mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Brief tests for :remove_children
This commit is contained in:
parent
a4d7a08317
commit
3322ba6449
1 changed files with 22 additions and 0 deletions
|
@ -235,4 +235,26 @@ describe("util.stanza", function()
|
|||
assert.falsy(st.is_stanza({}));
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#remove_children", function ()
|
||||
it("should work", function ()
|
||||
local s = st.stanza("x", {xmlns="test"})
|
||||
:tag("y", {xmlns="test"}):up()
|
||||
:tag("z", {xmlns="test2"}):up()
|
||||
:tag("x", {xmlns="test2"}):up()
|
||||
|
||||
s:remove_children("x");
|
||||
assert.falsy(s:get_child("x"))
|
||||
assert.truthy(s:get_child("z","test2"));
|
||||
assert.truthy(s:get_child("x","test2"));
|
||||
|
||||
s:remove_children(nil, "test2");
|
||||
assert.truthy(s:get_child("y"))
|
||||
assert.falsy(s:get_child(nil,"test2"));
|
||||
|
||||
s:remove_children();
|
||||
assert.falsy(s.tags[1]);
|
||||
end);
|
||||
end);
|
||||
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue