(self)
| 4781 | self._test_decode('hello\r', 'hello\n') |
| 4782 | |
| 4783 | def test_decode_one_line_nl(self): |
| 4784 | self._test_decode('hello\n', 'helloX', eol='X') |
| 4785 | |
| 4786 | def test_decode_one_line_crnl(self): |
| 4787 | self._test_decode('hello\r\n', 'helloX', eol='X') |
nothing calls this directly
no test coverage detected