summaryrefslogtreecommitdiff
path: root/tests/xmpp.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2022-03-10 23:23:47 +0100
committerlouiz’ <louiz@louiz.org>2022-03-10 23:23:47 +0100
commit0061298dd0945f7f67e7fa340c6649b179c804d5 (patch)
tree23f178ae4f3d988c0c712c79e3d7156fcc5a33e0 /tests/xmpp.cpp
parent18b6006e30c26a2fb6196e3b16420de74a654a73 (diff)
downloadbiboumi-master.tar.gz
biboumi-master.tar.bz2
biboumi-master.tar.xz
biboumi-master.zip
Do not use ':' as a namespace separator with expatHEADmaster
Instead use \1, and build our own nodes by explicitely separating the namespace and the node name.
Diffstat (limited to 'tests/xmpp.cpp')
-rw-r--r--tests/xmpp.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/xmpp.cpp b/tests/xmpp.cpp
index 14c51da..c49c2fd 100644
--- a/tests/xmpp.cpp
+++ b/tests/xmpp.cpp
@@ -67,6 +67,8 @@ TEST_CASE("substanzas")
CHECK(!d.has_children());
}
CHECK(b.has_children());
+ XmlSubNode e(a, "namespace", "name");
+ CHECK(e.get_tag("xmlns") == "namespace");
}
CHECK(a.has_children());
}