(*args, **kwargs)
| 117 | """Client runs ClientConnection factory provided in create_connection.""" |
| 118 | |
| 119 | def create_connection(*args, **kwargs): |
| 120 | client = ClientConnection(*args, **kwargs) |
| 121 | client.create_connection_ran = True |
| 122 | return client |
| 123 | |
| 124 | with run_server() as server: |
| 125 | with connect( |
no test coverage detected