(self, store: MemoryScopeStore)
| 56 | class TestHandleMemoryTool: |
| 57 | @pytest.mark.asyncio |
| 58 | async def test_remember(self, store: MemoryScopeStore): |
| 59 | result = await handle_memory_tool( |
| 60 | store, "remember", {"scope": "global", "key": "lang", "content": "Python"} |
| 61 | ) |
| 62 | assert "Remembered 'lang'" in result |
| 63 | assert "global" in result |
| 64 | |
| 65 | @pytest.mark.asyncio |
| 66 | async def test_recall_all(self, store: MemoryScopeStore): |
nothing calls this directly
no test coverage detected