(self)
| 4793 | self._test_decode('hello\r\nworld', 'helloXworld', eol='X') |
| 4794 | |
| 4795 | def test_decode_two_lines(self): |
| 4796 | self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') |
| 4797 | |
| 4798 | def test_decode_two_lines_eol(self): |
| 4799 | self._test_decode('hello\r\nworld\r\n', 'helloXworldX', eol='X') |
nothing calls this directly
no test coverage detected