Test that an `ElementTree` `Comment` passes the `is Comment` test.
(self)
| 420 | self.comment = etree.Comment('foo') |
| 421 | |
| 422 | def testCommentIsComment(self): |
| 423 | """ Test that an `ElementTree` `Comment` passes the `is Comment` test. """ |
| 424 | self.assertIs(self.comment.tag, etree.Comment) |
| 425 | |
| 426 | def testCommentIsBlockLevel(self): |
| 427 | """ Test that an `ElementTree` `Comment` is recognized as `BlockLevel`. """ |
nothing calls this directly
no outgoing calls
no test coverage detected