diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-03-05 23:42:01 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-03-05 23:42:01 +0000 |
commit | c933d017d7cae2c2b8a00330079e8f10d96aa778 (patch) | |
tree | 3bc20470d3432473b4271373ec2ec70f04dfdb00 /tests/test_util_xml.lua | |
parent | 5d33051ecc8a62231f0dd37f4176a87b19e83534 (diff) | |
download | prosody-c933d017d7cae2c2b8a00330079e8f10d96aa778.tar.gz prosody-c933d017d7cae2c2b8a00330079e8f10d96aa778.zip |
tests: Add basic tests for util.xml and util.xmppstream
Diffstat (limited to 'tests/test_util_xml.lua')
-rw-r--r-- | tests/test_util_xml.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_util_xml.lua b/tests/test_util_xml.lua new file mode 100644 index 00000000..ba44da19 --- /dev/null +++ b/tests/test_util_xml.lua @@ -0,0 +1,12 @@ +function parse(parse) + local x = +[[<x xmlns:a="b"> + <y xmlns:a="c"> <!-- this overwrites 'a' --> + <a:z/> + </y> + <a:z/> <!-- prefix 'a' is nil here, but should be 'b' --> +</x> +]] + local stanza = parse(x); + assert_equal(stanza.tags[2].attr.xmlns, "b"); +end |