(tmp_path)
| 202 | |
| 203 | @pytest.mark.asyncio |
| 204 | async def test_slash_exit(tmp_path): |
| 205 | kb_dir = _setup_kb(tmp_path) |
| 206 | session = _make_session(kb_dir) |
| 207 | p, _collected = _collect_fmt() |
| 208 | with p: |
| 209 | result = await _handle_slash("/exit", kb_dir, session, _STYLE) |
| 210 | assert result == "exit" |
| 211 | |
| 212 | |
| 213 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected