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, 0 insertions, 12 deletions
diff --git a/tests/test_util_xml.lua b/tests/test_util_xml.lua
deleted file mode 100644
index ba44da19..00000000
--- a/tests/test_util_xml.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-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