(self)
| 3259 | e.findtext(cls(e, 'x')) |
| 3260 | |
| 3261 | def test_findtext_with_error(self): |
| 3262 | e = ET.Element('foo') |
| 3263 | e.extend([ET.Element('bar')]) |
| 3264 | try: |
| 3265 | e.findtext(BadElementPath('x')) |
| 3266 | except ZeroDivisionError: |
| 3267 | pass |
| 3268 | |
| 3269 | def test_findtext_with_falsey_text_attribute(self): |
| 3270 | root_elem = ET.Element('foo') |
nothing calls this directly
no test coverage detected