| 45 | |
| 46 | |
| 47 | class HelperAddon: |
| 48 | def __init__(self): |
| 49 | self.flows = [] |
| 50 | |
| 51 | def request(self, f): |
| 52 | self.flows.append(f) |
| 53 | |
| 54 | def tcp_start(self, f): |
| 55 | self.flows.append(f) |
| 56 | |
| 57 | |
| 58 | async def test_start_stop(caplog_async): |
no outgoing calls
searching dependent graphs…