(self, markdown_string, expected)
| 76 | |
| 77 | class MarkdownToSafeHTMLTest(tb_test.TestCase): |
| 78 | def _test(self, markdown_string, expected): |
| 79 | actual = plugin_util.markdown_to_safe_html(markdown_string) |
| 80 | self.assertEqual(expected, actual) |
| 81 | |
| 82 | def test_empty_input(self): |
| 83 | self._test("", "") |
no outgoing calls
no test coverage detected