summaryrefslogtreecommitdiff
path: root/tests/test_write.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_write.cpp')
-rw-r--r--tests/test_write.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_write.cpp b/tests/test_write.cpp
index 0904b21..3871bf6 100644
--- a/tests/test_write.cpp
+++ b/tests/test_write.cpp
@@ -45,6 +45,13 @@ TEST_XML(write_cdata_escape, "<![CDATA[value]]>")
CHECK_NODE(doc, STR("<![CDATA[1]]]]><![CDATA[>2]]]]><![CDATA[>3]]>"));
}
+TEST_XML(write_cdata_inner, "<node><![CDATA[value]]></node>")
+{
+ CHECK_NODE(doc, STR("<node><![CDATA[value]]></node>"));
+ CHECK_NODE_EX(doc, STR("<node><![CDATA[value]]></node>\n"), STR(""), 0);
+}
+
+
TEST_XML_FLAGS(write_comment, "<!--text-->", parse_default | parse_comments)
{
CHECK_NODE(doc, STR("<!--text-->"));