(self)
| 122 | self._basetest_open_connection_error(conn_fut) |
| 123 | |
| 124 | def test_feed_empty_data(self): |
| 125 | stream = asyncio.StreamReader(loop=self.loop) |
| 126 | |
| 127 | stream.feed_data(b'') |
| 128 | self.assertEqual(b'', stream._buffer) |
| 129 | |
| 130 | def test_feed_nonempty_data(self): |
| 131 | stream = asyncio.StreamReader(loop=self.loop) |
nothing calls this directly
no test coverage detected