(self)
| 2263 | self.assertEqual(tree.findtext("section/tag"), 'subtext') |
| 2264 | |
| 2265 | def test_bug_xmltoolkit28(self): |
| 2266 | # .//tag causes exceptions |
| 2267 | |
| 2268 | tree = ET.XML("<doc><table><tbody/></table></doc>") |
| 2269 | self.assertEqual(summarize_list(tree.findall(".//thead")), []) |
| 2270 | self.assertEqual(summarize_list(tree.findall(".//tbody")), ['tbody']) |
| 2271 | |
| 2272 | def test_bug_xmltoolkitX1(self): |
| 2273 | # dump() doesn't flush the output buffer |
nothing calls this directly
no test coverage detected