(self, request)
| 90 | ] |
| 91 | ) |
| 92 | def leader_set_fixture(self, request): |
| 93 | tab_stop_cxml, new_value, expected_cxml = request.param |
| 94 | tab_stop = TabStop(element(tab_stop_cxml)) |
| 95 | value = None if new_value is None else getattr(WD_TAB_LEADER, new_value) |
| 96 | expected_xml = xml(expected_cxml) |
| 97 | return tab_stop, value, expected_xml |
| 98 | |
| 99 | @pytest.fixture |
| 100 | def position_get_fixture(self, request): |