Handshake succeeds without extensions.
(self)
| 436 | ) |
| 437 | |
| 438 | def test_no_extensions(self): |
| 439 | """Handshake succeeds without extensions.""" |
| 440 | client = ClientProtocol(URI) |
| 441 | with alter_and_receive_response(client): |
| 442 | pass |
| 443 | |
| 444 | self.assertHandshakeSuccess(client) |
| 445 | self.assertEqual(client.extensions, []) |
| 446 | |
| 447 | def test_offer_extension(self): |
| 448 | """Client offers an extension.""" |
nothing calls this directly
no test coverage detected