(self)
| 4858 | self._test_encode('hello\n', 'hello\n') |
| 4859 | |
| 4860 | def test_encode_one_line_crlf(self): |
| 4861 | self._test_encode('hello\r\n', 'hello\n') |
| 4862 | |
| 4863 | def test_encode_one_line_eol(self): |
| 4864 | self._test_encode('hello\n', 'hello\r\n', eol='\r\n') |
nothing calls this directly
no test coverage detected