(self)
| 47 | self.assertEqual(style.doc.getvalue(), b'**foobar** ') |
| 48 | |
| 49 | def test_empty_bold(self): |
| 50 | style = ReSTStyle(ReSTDocument()) |
| 51 | style.start_b() |
| 52 | style.end_b() |
| 53 | self.assertEqual(style.doc.getvalue(), b'') |
| 54 | |
| 55 | def test_italics(self): |
| 56 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected