(self, store: MemoryScopeStore)
| 96 | |
| 97 | @pytest.mark.asyncio |
| 98 | async def test_forget_existing(self, store: MemoryScopeStore): |
| 99 | store.remember(MemoryScope.GLOBAL, "temp", "delete") |
| 100 | result = await handle_memory_tool( |
| 101 | store, "forget", {"scope": "global", "key": "temp"} |
| 102 | ) |
| 103 | assert "Forgot 'temp'" in result |
| 104 | |
| 105 | @pytest.mark.asyncio |
| 106 | async def test_forget_nonexistent(self, store: MemoryScopeStore): |
nothing calls this directly
no test coverage detected