(self)
| 126 | self.assertEqual(style.doc.getvalue(), b'::\n\n foobar\n\n\n') |
| 127 | |
| 128 | def test_important(self): |
| 129 | style = ReSTStyle(ReSTDocument()) |
| 130 | style.start_important() |
| 131 | style.end_important() |
| 132 | self.assertEqual(style.doc.getvalue(), b'\n\n.. warning::\n\n \n\n') |
| 133 | |
| 134 | def test_note(self): |
| 135 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected