PullDOM does not receive "comment" events.
(self)
| 139 | |
| 140 | @unittest.expectedFailure |
| 141 | def test_comment(self): |
| 142 | """PullDOM does not receive "comment" events.""" |
| 143 | items = pulldom.parseString(SMALL_SAMPLE) |
| 144 | for evt, _ in items: |
| 145 | if evt == pulldom.COMMENT: |
| 146 | break |
| 147 | else: |
| 148 | self.fail("No comment was encountered") |
| 149 | |
| 150 | @unittest.expectedFailure |
| 151 | def test_end_document(self): |
nothing calls this directly
no test coverage detected