(self)
| 36 | self.assertEqual(doc.getvalue(), b'foo') |
| 37 | |
| 38 | def test_writeln(self): |
| 39 | doc = ReSTDocument() |
| 40 | doc.writeln('foo') |
| 41 | self.assertEqual(doc.getvalue(), b'foo\n') |
| 42 | |
| 43 | def test_find_last_write(self): |
| 44 | doc = ReSTDocument() |
nothing calls this directly
no test coverage detected