summaryrefslogtreecommitdiffstats
path: root/rtemsqual/tests/test_content_sphinx.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsqual/tests/test_content_sphinx.py')
-rw-r--r--rtemsqual/tests/test_content_sphinx.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/rtemsqual/tests/test_content_sphinx.py b/rtemsqual/tests/test_content_sphinx.py
index bb8ba6cc..5d24a818 100644
--- a/rtemsqual/tests/test_content_sphinx.py
+++ b/rtemsqual/tests/test_content_sphinx.py
@@ -217,6 +217,11 @@ def test_add_definition_item():
assert str(content) == """a
b
"""
+ content = SphinxContent()
+ content.add_definition_item("a", "\n b\nc", wrap=True)
+ assert str(content) == """a
+ b c
+"""
def test_definition_item():