(self, p_cxml: str, value: str, expected_cxml: str)
| 890 | ], |
| 891 | ) |
| 892 | def it_can_change_its_text(self, p_cxml: str, value: str, expected_cxml: str): |
| 893 | p = cast("CT_TextParagraph", element(p_cxml)) |
| 894 | paragraph = _Paragraph(p, None) |
| 895 | |
| 896 | paragraph.text = value |
| 897 | |
| 898 | assert paragraph._element.xml == xml(expected_cxml) |
| 899 | |
| 900 | # fixtures --------------------------------------------- |
| 901 |
nothing calls this directly
no test coverage detected