aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_util_xml.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_util_xml.lua')
-rw-r--r--tests/test_util_xml.lua12
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