(self, request)
| 602 | |
| 603 | @pytest.fixture(params=[("a:rPr", None), ("a:rPr/a:latin{typeface=Foobar}", "Foobar")]) |
| 604 | def name_get_fixture(self, request): |
| 605 | rPr_cxml, expected_value = request.param |
| 606 | font = Font(element(rPr_cxml)) |
| 607 | return font, expected_value |
| 608 | |
| 609 | @pytest.fixture( |
| 610 | params=[ |