Test Extension loading with an entry point.
(self)
| 64 | markdown.Markdown(extensions=[FootnoteExtension()]) |
| 65 | |
| 66 | def testEntryPointExtension(self): |
| 67 | """ Test Extension loading with an entry point. """ |
| 68 | markdown.Markdown(extensions=['footnotes']) |
| 69 | |
| 70 | def testDotNotationExtension(self): |
| 71 | """ Test Extension loading with Name (`path.to.module`). """ |
nothing calls this directly
no outgoing calls
no test coverage detected