(self)
| 655 | ) |
| 656 | |
| 657 | def testHTMLOutput(self): |
| 658 | self.assertEqual( |
| 659 | markdown.markdown('foo \nbar', output_format='html'), |
| 660 | '<p>foo<br>\nbar</p>' |
| 661 | ) |
| 662 | |
| 663 | |
| 664 | class testAtomicString(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected