(tmp_path: Path)
| 42 | |
| 43 | |
| 44 | def _make_interactive_context(tmp_path: Path) -> ToolContext: |
| 45 | ctx = ToolContext(workspace_root=tmp_path) |
| 46 | ctx.options = ToolUseOptions(is_non_interactive_session=False) |
| 47 | return ctx |
| 48 | |
| 49 | |
| 50 | def test_fork_routing_disabled_by_default(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None: |
no test coverage detected