Test simple input.
(self)
| 55 | self.assertEqual(self.md.convert(' '), '') |
| 56 | |
| 57 | def testSimpleInput(self): |
| 58 | """ Test simple input. """ |
| 59 | self.assertEqual(self.md.convert('foo'), '<p>foo</p>') |
| 60 | |
| 61 | def testInstanceExtension(self): |
| 62 | """ Test Extension loading with a class instance. """ |