(self, request)
| 1009 | |
| 1010 | @pytest.fixture(params=[("a:p", 0), ("a:p/a:pPr{lvl=2}", 2)]) |
| 1011 | def level_get_fixture(self, request): |
| 1012 | p_cxml, expected_value = request.param |
| 1013 | paragraph = _Paragraph(element(p_cxml), None) |
| 1014 | return paragraph, expected_value |
| 1015 | |
| 1016 | @pytest.fixture( |
| 1017 | params=[ |
nothing calls this directly
no test coverage detected