summaryrefslogtreecommitdiff
path: root/rtemsspec/tests/test_content_sphinx.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/tests/test_content_sphinx.py')
-rw-r--r--rtemsspec/tests/test_content_sphinx.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/rtemsspec/tests/test_content_sphinx.py b/rtemsspec/tests/test_content_sphinx.py
index 00be7a5f..e6bbd4bf 100644
--- a/rtemsspec/tests/test_content_sphinx.py
+++ b/rtemsspec/tests/test_content_sphinx.py
@@ -40,6 +40,18 @@ def test_add_label():
"""
+def test_label_scope():
+ content = SphinxContent()
+ with content.label_scope("x"):
+ with content.section("y"):
+ pass
+ assert str(content) == """.. _xY:
+
+y
+=
+"""
+
+
def test_directive():
content = SphinxContent()
with content.directive("x"):