readline() must handle signals and not lose data.
(self)
| 153 | ) |
| 154 | |
| 155 | def test_readline(self): |
| 156 | """readline() must handle signals and not lose data.""" |
| 157 | self._test_reading( |
| 158 | data_to_write=b'hello, world!', |
| 159 | read_and_verify_code=self._READING_CODE_TEMPLATE.format( |
| 160 | read_method_name='readline', |
| 161 | expected=b'hello, world!\n')) |
| 162 | |
| 163 | def test_readlines(self): |
| 164 | """readlines() must handle signals and not lose data.""" |
nothing calls this directly
no test coverage detected