(self, store: MemoryScopeStore)
| 104 | |
| 105 | @pytest.mark.asyncio |
| 106 | async def test_forget_nonexistent(self, store: MemoryScopeStore): |
| 107 | result = await handle_memory_tool( |
| 108 | store, "forget", {"scope": "global", "key": "nope"} |
| 109 | ) |
| 110 | assert "No memory with key" in result |
| 111 | |
| 112 | @pytest.mark.asyncio |
| 113 | async def test_unknown_tool(self, store: MemoryScopeStore): |
nothing calls this directly
no test coverage detected