(self)
| 4778 | self._test_decode('hello\n', 'hello\n') |
| 4779 | |
| 4780 | def test_decode_one_line_cr(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') |
nothing calls this directly
no test coverage detected