(*args, **kwargs)
| 148 | """Client runs ClientConnection factory provided in create_connection.""" |
| 149 | |
| 150 | def create_connection(*args, **kwargs): |
| 151 | client = ClientConnection(*args, **kwargs) |
| 152 | client.create_connection_ran = True |
| 153 | return client |
| 154 | |
| 155 | async with serve(*args) as server: |
| 156 | async with connect( |
no test coverage detected