(self)
| 52 | self.assertEqual(messages, []) |
| 53 | |
| 54 | def test_open_connection(self): |
| 55 | with test_utils.run_test_server() as httpd: |
| 56 | conn_fut = asyncio.open_connection(*httpd.address) |
| 57 | self._basetest_open_connection(conn_fut) |
| 58 | |
| 59 | @socket_helper.skip_unless_bind_unix_socket |
| 60 | def test_open_unix_connection(self): |
nothing calls this directly
no test coverage detected