(self, store: MemoryScopeStore)
| 111 | |
| 112 | @pytest.mark.asyncio |
| 113 | async def test_unknown_tool(self, store: MemoryScopeStore): |
| 114 | result = await handle_memory_tool(store, "unknown_op", {}) |
| 115 | assert "Unknown memory tool" in result |
| 116 | |
| 117 | @pytest.mark.asyncio |
| 118 | async def test_error_handling(self, store: MemoryScopeStore): |
nothing calls this directly
no test coverage detected