(self)
| 71 | self.assertEqual(style.doc.getvalue(), b'\n\nfoo\n\n') |
| 72 | |
| 73 | def test_code(self): |
| 74 | style = ReSTStyle(ReSTDocument()) |
| 75 | style.code('foobar') |
| 76 | self.assertEqual(style.doc.getvalue(), b'``foobar`` ') |
| 77 | |
| 78 | def test_empty_code(self): |
| 79 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected