mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.stanza: Add tests ensuring support for unicode in tag/attr names
This commit is contained in:
parent
a65352b35f
commit
b7fd84b6e5
1 changed files with 6 additions and 0 deletions
|
@ -62,6 +62,12 @@ describe("util.stanza", function()
|
|||
assert.are.equal(#s1.tags[1], 1);
|
||||
assert.are.equal(s1.tags[1][1].name, "grandchild1");
|
||||
end);
|
||||
it("should work with unicode values", function ()
|
||||
local s = st.stanza("Объект", { xmlns = "myxmlns", ["Объект"] = "&" });
|
||||
assert.are.equal(s.name, "Объект");
|
||||
assert.are.equal(s.attr.xmlns, "myxmlns");
|
||||
assert.are.equal(s.attr["Объект"], "&");
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#message()", function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue