readlines() must handle signals and not lose data.
(self)
| 229 | expected='hello, world!\n')) |
| 230 | |
| 231 | def test_readlines(self): |
| 232 | """readlines() must handle signals and not lose data.""" |
| 233 | self._test_reading( |
| 234 | data_to_write=b'hello\r\nworld!', |
| 235 | read_and_verify_code=self._READING_CODE_TEMPLATE.format( |
| 236 | read_method_name='readlines', |
| 237 | expected=['hello\n', 'world!\n'])) |
| 238 | |
| 239 | def test_readall(self): |
| 240 | """read() must handle signals and not lose data.""" |
nothing calls this directly
no test coverage detected