(lock_file: str)
| 302 | |
| 303 | @pytest.mark.asyncio |
| 304 | async def test_sequential_mode_switch(lock_file: str) -> None: |
| 305 | lock = AsyncReadWriteLock(lock_file, is_singleton=False) |
| 306 | async with lock.read_lock(): |
| 307 | pass |
| 308 | async with lock.write_lock(): |
| 309 | pass |
| 310 | async with lock.read_lock(): |
| 311 | pass |
nothing calls this directly
no test coverage detected
searching dependent graphs…