(self)
| 64 | self.assertEqual(doc.getvalue(), b'foobazbar') |
| 65 | |
| 66 | def test_include_doc_string(self): |
| 67 | doc = ReSTDocument() |
| 68 | doc.include_doc_string('<p>this is a <code>test</code></p>') |
| 69 | self.assertEqual(doc.getvalue(), b'\n\nthis is a ``test`` \n\n') |
| 70 | |
| 71 | def test_remove_doc_string(self): |
| 72 | doc = ReSTDocument() |
nothing calls this directly
no test coverage detected