(self, store: MemoryScopeStore)
| 116 | |
| 117 | @pytest.mark.asyncio |
| 118 | async def test_error_handling(self, store: MemoryScopeStore): |
| 119 | # Missing required args |
| 120 | result = await handle_memory_tool(store, "remember", {}) |
| 121 | assert "error" in result.lower() |
nothing calls this directly
no test coverage detected