(tmp_path)
| 88 | |
| 89 | @pytest.mark.asyncio |
| 90 | async def test_slash_deck_unknown_subcommand(tmp_path): |
| 91 | kb = _make_kb(tmp_path) |
| 92 | session = ChatSession.new(kb, "gpt-4o-mini", "en") |
| 93 | style = Style.from_dict({}) |
| 94 | action = await _handle_slash("/deck list", kb, session, style) |
| 95 | assert action is None |
| 96 | |
| 97 | |
| 98 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected