Test manager initialization.
(self)
| 15 | """Basic functionality tests.""" |
| 16 | |
| 17 | def test_init(self): |
| 18 | """Test manager initialization.""" |
| 19 | manager = SessionLockManager() |
| 20 | assert manager._state_guard is not None |
| 21 | assert manager._loop_managers is not None |
| 22 | |
| 23 | @pytest.mark.asyncio |
| 24 | async def test_acquire_release_lock(self): |
nothing calls this directly
no test coverage detected