Test that an `ElementTree` `Comment` is recognized as `BlockLevel`.
(self)
| 424 | self.assertIs(self.comment.tag, etree.Comment) |
| 425 | |
| 426 | def testCommentIsBlockLevel(self): |
| 427 | """ Test that an `ElementTree` `Comment` is recognized as `BlockLevel`. """ |
| 428 | md = markdown.Markdown() |
| 429 | self.assertIs(md.is_block_level(self.comment.tag), False) |
| 430 | |
| 431 | def testCommentSerialization(self): |
| 432 | """ Test that an `ElementTree` `Comment` serializes properly. """ |
nothing calls this directly
no test coverage detected