(tmp_path)
| 150 | |
| 151 | @pytest.mark.asyncio |
| 152 | async def test_slash_lint(tmp_path): |
| 153 | kb_dir = _setup_kb(tmp_path) |
| 154 | session = _make_session(kb_dir) |
| 155 | with patch("openkb.cli.run_lint", new_callable=AsyncMock, return_value=tmp_path / "report.md"): |
| 156 | result = await _handle_slash("/lint", kb_dir, session, _STYLE) |
| 157 | assert result is None |
| 158 | |
| 159 | |
| 160 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected