(self)
| 815 | self.assertEqual(options, self.default_options) |
| 816 | |
| 817 | def testNoLazyOlOption(self): |
| 818 | options, logging_level = parse_options(['-n']) |
| 819 | self.default_options['lazy_ol'] = False |
| 820 | self.assertEqual(options, self.default_options) |
| 821 | |
| 822 | def testExtensionOption(self): |
| 823 | options, logging_level = parse_options(['-x', 'markdown.extensions.footnotes']) |
nothing calls this directly
no test coverage detected