Test Extension loading with a class instance.
(self)
| 59 | self.assertEqual(self.md.convert('foo'), '<p>foo</p>') |
| 60 | |
| 61 | def testInstanceExtension(self): |
| 62 | """ Test Extension loading with a class instance. """ |
| 63 | from markdown.extensions.footnotes import FootnoteExtension |
| 64 | markdown.Markdown(extensions=[FootnoteExtension()]) |
| 65 | |
| 66 | def testEntryPointExtension(self): |
| 67 | """ Test Extension loading with an entry point. """ |
nothing calls this directly
no test coverage detected