Test with empty session ID.
(self)
| 443 | |
| 444 | @pytest.mark.asyncio |
| 445 | async def test_empty_session_id(self): |
| 446 | """Test with empty session ID.""" |
| 447 | manager = SessionLockManager() |
| 448 | |
| 449 | async with manager.acquire_lock(""): |
| 450 | pass |
| 451 | |
| 452 | # Should work without issues |
| 453 | |
| 454 | @pytest.mark.asyncio |
| 455 | async def test_special_characters_in_session_id(self): |
nothing calls this directly
no test coverage detected