(self)
| 138 | self.assertEqual(style.doc.getvalue(), b'\n\n.. note::\n\n \n\n') |
| 139 | |
| 140 | def test_danger(self): |
| 141 | style = ReSTStyle(ReSTDocument()) |
| 142 | style.start_danger() |
| 143 | style.end_danger() |
| 144 | self.assertEqual(style.doc.getvalue(), b'\n\n.. danger::\n\n \n\n') |
| 145 | |
| 146 | def test_toctree_html(self): |
| 147 | style = ReSTStyle(ReSTDocument()) |
nothing calls this directly
no test coverage detected