| 406 | """Run exits when the user declines the confirmation prompt.""" |
| 407 | |
| 408 | class _No: |
| 409 | def ask(self): |
| 410 | return False |
| 411 | |
| 412 | monkeypatch.setattr("semble.installer.installer.questionary.confirm", lambda *_, **__: _No()) |
| 413 | with pytest.raises(SystemExit): |
no outgoing calls