(self)
| 58 | |
| 59 | @socket_helper.skip_unless_bind_unix_socket |
| 60 | def test_open_unix_connection(self): |
| 61 | with test_utils.run_test_unix_server() as httpd: |
| 62 | conn_fut = asyncio.open_unix_connection(httpd.address) |
| 63 | self._basetest_open_connection(conn_fut) |
| 64 | |
| 65 | def _basetest_open_connection_no_loop_ssl(self, open_connection_fut): |
| 66 | messages = [] |
nothing calls this directly
no test coverage detected