mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Handle Clark notation for attributes in :find()
This commit is contained in:
parent
00584c4d61
commit
885fde62be
2 changed files with 4 additions and 0 deletions
|
@ -580,6 +580,7 @@ describe("util.stanza", function()
|
|||
it("handles namespaced attributes", function()
|
||||
local s = st.stanza("root", { ["urn:example:namespace\1attr"] = "value" }, { e = "urn:example:namespace" });
|
||||
assert.equal("value", s:find("@e:attr"), "finds prefixed attr")
|
||||
assert.equal("value", s:find("@{urn:example:namespace}attr"), "finds clark attr")
|
||||
end)
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue