(self)
| 4922 | self._test_encode('', '') |
| 4923 | |
| 4924 | def test_encode_null_lines(self): |
| 4925 | self._test_encode('\n\n', '\n\n') |
| 4926 | |
| 4927 | def test_encode_one_line(self): |
| 4928 | self._test_encode('hello\n', 'hello\n') |
nothing calls this directly
no test coverage detected