(self)
| 3252 | pass |
| 3253 | |
| 3254 | def test_findtext_with_mutating(self): |
| 3255 | for cls in [MutationDeleteElementPath, MutationClearElementPath]: |
| 3256 | with self.subTest(cls): |
| 3257 | e = ET.Element('foo') |
| 3258 | e.extend([ET.Element('bar')]) |
| 3259 | e.findtext(cls(e, 'x')) |
| 3260 | |
| 3261 | def test_findtext_with_error(self): |
| 3262 | e = ET.Element('foo') |