Test that the base Extension class will raise `NotImplemented`.
(self)
| 397 | ) |
| 398 | |
| 399 | def testBaseExtention(self): |
| 400 | """ Test that the base Extension class will raise `NotImplemented`. """ |
| 401 | self.assertRaises( |
| 402 | NotImplementedError, |
| 403 | markdown.Markdown, extensions=[markdown.extensions.Extension()] |
| 404 | ) |
| 405 | |
| 406 | |
| 407 | class testETreeComments(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected