(data)
| 175 | stream = Stream(b'') |
| 176 | |
| 177 | def prepare(data): |
| 178 | f = asyncio.Future(loop=self.loop) |
| 179 | f.set_result(data) |
| 180 | return f |
| 181 | |
| 182 | with mock.patch.object(stream, 'read', side_effect=[ |
| 183 | prepare(b'Hello, '), |
no outgoing calls
no test coverage detected