mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.xtemplate: Fix error on applying each() to zero stanzas
This commit is contained in:
parent
b522fd0e05
commit
8a96854733
3 changed files with 10 additions and 2 deletions
|
@ -38,6 +38,10 @@ describe("util.xtemplate", function ()
|
|||
x:reset();
|
||||
assert.same("12345", xtemplate.render("{foo/bar|each(i){{#}}}", x));
|
||||
end)
|
||||
it("handles missing inputs", function ()
|
||||
local x = st.stanza("root");
|
||||
assert.same("", xtemplate.render("{foo/bar|each(i){{#}}}", x));
|
||||
end)
|
||||
end)
|
||||
end)
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue