(self)
| 3244 | e.find(cls(e, 'x')) |
| 3245 | |
| 3246 | def test_find_with_error(self): |
| 3247 | e = ET.Element('foo') |
| 3248 | e.extend([ET.Element('bar')]) |
| 3249 | try: |
| 3250 | e.find(BadElementPath('x')) |
| 3251 | except ZeroDivisionError: |
| 3252 | pass |
| 3253 | |
| 3254 | def test_findtext_with_mutating(self): |
| 3255 | for cls in [MutationDeleteElementPath, MutationClearElementPath]: |
nothing calls this directly
no test coverage detected