(self)
| 121 | self.assertTrue(style.doc.keep_data) |
| 122 | |
| 123 | def test_codeblock(self): |
| 124 | style = ReSTStyle(ReSTDocument()) |
| 125 | style.codeblock('foobar') |
| 126 | self.assertEqual(style.doc.getvalue(), b'::\n\n foobar\n\n\n') |
| 127 | |
| 128 | def test_important(self): |
| 129 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected