(self, request)
| 130 | ] |
| 131 | ) |
| 132 | def action_fixture(self, request): |
| 133 | cNvPr_cxml, action_text, expected_action = request.param |
| 134 | cNvPr = element(cNvPr_cxml) |
| 135 | if action_text is not None: |
| 136 | cNvPr.hlinkClick.action = action_text |
| 137 | action_setting = ActionSetting(cNvPr, None) |
| 138 | return action_setting, expected_action |
| 139 | |
| 140 | @pytest.fixture( |
| 141 | params=[ |
nothing calls this directly
no test coverage detected