diff options
author | louiz’ <louiz@louiz.org> | 2022-03-10 23:23:47 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2022-03-10 23:23:47 +0100 |
commit | 0061298dd0945f7f67e7fa340c6649b179c804d5 (patch) | |
tree | 23f178ae4f3d988c0c712c79e3d7156fcc5a33e0 /tests | |
parent | 18b6006e30c26a2fb6196e3b16420de74a654a73 (diff) | |
download | biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.tar.gz biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.tar.bz2 biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.tar.xz biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.zip |
Instead use \1, and build our own nodes by explicitely separating the
namespace and the node name.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/xmpp.cpp | 2 |
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()); } |