(self, *, man)
| 207 | |
| 208 | @pytest.mark.asyncio |
| 209 | async def test_clear(self, *, man): |
| 210 | man._send_operation = AsyncMock() |
| 211 | await man.clear("key") |
| 212 | man._send_operation.assert_called_once_with( |
| 213 | SetAction.CLEAR, |
| 214 | "key", |
| 215 | [], |
| 216 | ) |
| 217 | |
| 218 | @pytest.mark.asyncio |
| 219 | async def test_difference_update(self, *, man): |