Test that appended escapes are only in the current instance.
(self)
| 906 | """ Tests escape character append. """ |
| 907 | |
| 908 | def testAppend(self): |
| 909 | """ Test that appended escapes are only in the current instance. """ |
| 910 | md = markdown.Markdown() |
| 911 | md.ESCAPED_CHARS.append('|') |
| 912 | self.assertEqual('|' in md.ESCAPED_CHARS, True) |
| 913 | md2 = markdown.Markdown() |
| 914 | self.assertEqual('|' not in md2.ESCAPED_CHARS, True) |
| 915 | |
| 916 | |
| 917 | class TestBlockAppend(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected