()
| 164 | |
| 165 | |
| 166 | def test_websocket_str() -> None: |
| 167 | assert str(WebSocketException(1008)) == "1008: " |
| 168 | assert str(WebSocketException(1008, "Policy Violation")) == "1008: Policy Violation" |
| 169 | |
| 170 | |
| 171 | def test_websocket_repr() -> None: |
nothing calls this directly
no test coverage detected