(
self, spPr_cxml: str, dash_style: MSO_LINE, expected_cxml: str
)
| 46 | ], |
| 47 | ) |
| 48 | def it_can_change_its_dash_style( |
| 49 | self, spPr_cxml: str, dash_style: MSO_LINE, expected_cxml: str |
| 50 | ): |
| 51 | spPr = element(spPr_cxml) |
| 52 | line = LineFormat(spPr) |
| 53 | |
| 54 | line.dash_style = dash_style |
| 55 | |
| 56 | assert spPr.xml == xml(expected_cxml) |
| 57 | |
| 58 | def it_knows_its_width(self, width_get_fixture): |
| 59 | line, expected_line_width = width_get_fixture |
nothing calls this directly
no test coverage detected