Setup markdown object.
(self)
| 954 | md.inlinePatterns.register(TestAncestorExclusion.AncestorExample(pattern, 'strong'), 'ancestor-test', 0) |
| 955 | |
| 956 | def setUp(self): |
| 957 | """Setup markdown object.""" |
| 958 | self.md = markdown.Markdown(extensions=[TestAncestorExclusion.AncestorExtension()]) |
| 959 | |
| 960 | def test_ancestors(self): |
| 961 | """ Test that an extension can exclude parent tags. """ |
nothing calls this directly
no outgoing calls
no test coverage detected