(self, request)
| 554 | |
| 555 | @pytest.fixture(params=[("a:rPr", None), ("a:rPr{i=0}", False), ("a:rPr{i=1}", True)]) |
| 556 | def italic_get_fixture(self, request): |
| 557 | rPr_cxml, expected_value = request.param |
| 558 | font = Font(element(rPr_cxml)) |
| 559 | return font, expected_value |
| 560 | |
| 561 | @pytest.fixture( |
| 562 | params=[ |