(tmp_path)
| 59 | |
| 60 | @pytest.mark.asyncio |
| 61 | async def test_slash_skill_unknown_subcommand(tmp_path): |
| 62 | kb = _make_kb(tmp_path) |
| 63 | session = ChatSession.new(kb, "gpt-4o-mini", "en") |
| 64 | style = Style.from_dict({}) |
| 65 | action = await _handle_slash("/skill list", kb, session, style) |
| 66 | assert action is None |
| 67 | |
| 68 | |
| 69 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected