Test WebSocketConnectionManager initialization.
()
| 160 | |
| 161 | @pytest.mark.asyncio |
| 162 | async def test_websocketmanager_init(): |
| 163 | """Test WebSocketConnectionManager initialization.""" |
| 164 | manager = WebSocketConnectionManager() |
| 165 | |
| 166 | assert manager.active_connections == {} |
| 167 | |
| 168 | |
| 169 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected