(tmp_path)
| 212 | |
| 213 | @pytest.mark.asyncio |
| 214 | async def test_slash_clear(tmp_path): |
| 215 | kb_dir = _setup_kb(tmp_path) |
| 216 | session = _make_session(kb_dir) |
| 217 | p, _collected = _collect_fmt() |
| 218 | with p: |
| 219 | result = await _handle_slash("/clear", kb_dir, session, _STYLE) |
| 220 | assert result == "new_session" |
| 221 | |
| 222 | |
| 223 | def test_save_transcript_strips_ghost_wikilinks(tmp_path): |
nothing calls this directly
no test coverage detected