Test loading an empty/non-existent memory file
(self, temp_memory_file)
| 31 | |
| 32 | @pytest.mark.asyncio |
| 33 | async def test_load_empty_memory(self, temp_memory_file): |
| 34 | """Test loading an empty/non-existent memory file""" |
| 35 | result = await _load_memory(temp_memory_file) |
| 36 | assert result == {} |
| 37 | |
| 38 | @pytest.mark.asyncio |
| 39 | async def test_save_and_load_memory(self, temp_memory_file): |
nothing calls this directly
no test coverage detected