(self)
| 58 | self.assertEqual(style.doc.getvalue(), b'*foobar* ') |
| 59 | |
| 60 | def test_empty_italics(self): |
| 61 | style = ReSTStyle(ReSTDocument()) |
| 62 | style.start_i() |
| 63 | style.end_i() |
| 64 | self.assertEqual(style.doc.getvalue(), b'') |
| 65 | |
| 66 | def test_p(self): |
| 67 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected