(self, break_type: WD_BREAK, expected_cxml: str, paragraph_: Mock)
| 280 | ], |
| 281 | ) |
| 282 | def it_can_add_a_break(self, break_type: WD_BREAK, expected_cxml: str, paragraph_: Mock): |
| 283 | run = Run(cast(CT_R, element("w:r")), paragraph_) |
| 284 | |
| 285 | run.add_break(break_type) |
| 286 | |
| 287 | assert run._r.xml == xml(expected_cxml) |
| 288 | |
| 289 | @pytest.mark.parametrize( |
| 290 | ("r_cxml", "expected_cxml"), [('w:r/w:t"foo"', 'w:r/(w:t"foo", w:tab)')] |