(self)
| 110 | self.assertEqual(outfile.read().decode('utf-8'), '<p>foo</p>') |
| 111 | |
| 112 | def testStdinStdout(self): |
| 113 | markdown.markdownFromFile() |
| 114 | sys.stdout.seek(0) |
| 115 | self.assertEqual(sys.stdout.read(), '<p>foo</p>') |
| 116 | |
| 117 | |
| 118 | class TestBlockParser(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected