We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e385ae0 commit bf2b366Copy full SHA for bf2b366
pydocx/tests/test_xml.py
@@ -15,6 +15,7 @@ class BoldTestCase(_TranslationTestCase):
15
expected_output = """
16
<p><strong>AAA</strong></p>
17
<p>BBB</p>
18
+ <p>CCC</p>
19
"""
20
21
def get_xml(self):
@@ -35,6 +36,14 @@ def get_xml(self):
35
36
),
37
],
38
39
+ DXB.p_tag(
40
+ [
41
+ DXB.r_tag(
42
+ [DXB.t_tag('CCC')],
43
+ rpr=DXB.rpr_tag({'b': '0'}),
44
+ ),
45
+ ],
46
47
]
48
49
body = ''
0 commit comments