(self, request)
| 1002 | ] |
| 1003 | ) |
| 1004 | def clear_fixture(self, request): |
| 1005 | p_cxml, expected_p_cxml = request.param |
| 1006 | paragraph = _Paragraph(element(p_cxml), None) |
| 1007 | expected_xml = xml(expected_p_cxml) |
| 1008 | return paragraph, expected_xml |
| 1009 | |
| 1010 | @pytest.fixture(params=[("a:p", 0), ("a:p/a:pPr{lvl=2}", 2)]) |
| 1011 | def level_get_fixture(self, request): |
nothing calls this directly
no test coverage detected