(self)
| 76 | self.assertEqual(style.doc.getvalue(), b'``foobar`` ') |
| 77 | |
| 78 | def test_empty_code(self): |
| 79 | style = ReSTStyle(ReSTDocument()) |
| 80 | style.start_code() |
| 81 | style.end_code() |
| 82 | self.assertEqual(style.doc.getvalue(), b'') |
| 83 | |
| 84 | def test_h1(self): |
| 85 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected