(self)
| 132 | self.assertEqual(style.doc.getvalue(), b'\n\n.. warning::\n\n \n\n') |
| 133 | |
| 134 | def test_note(self): |
| 135 | style = ReSTStyle(ReSTDocument()) |
| 136 | style.start_note() |
| 137 | style.end_note() |
| 138 | self.assertEqual(style.doc.getvalue(), b'\n\n.. note::\n\n \n\n') |
| 139 | |
| 140 | def test_danger(self): |
| 141 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected