(httpie_plugins)
| 228 | |
| 229 | @pytest.fixture |
| 230 | def httpie_plugins_success(httpie_plugins): |
| 231 | def runner(*args, cli_mode: bool = True): |
| 232 | response = httpie_plugins(*args, cli_mode=True) |
| 233 | assert response.exit_status == ExitStatus.SUCCESS |
| 234 | return response.splitlines() |
| 235 | return runner |
no outgoing calls