(self)
| 3199 | e.find(cls(e, 'x')) |
| 3200 | |
| 3201 | def test_find_with_error(self): |
| 3202 | e = ET.Element('foo') |
| 3203 | e.extend([ET.Element('bar')]) |
| 3204 | try: |
| 3205 | e.find(BadElementPath('x')) |
| 3206 | except ZeroDivisionError: |
| 3207 | pass |
| 3208 | |
| 3209 | def test_findtext_with_mutating(self): |
| 3210 | for cls in [MutationDeleteElementPath, MutationClearElementPath]: |
nothing calls this directly
no test coverage detected