(self)
| 2220 | self.assertEqual(tree.findtext("section/tag"), 'subtext') |
| 2221 | |
| 2222 | def test_bug_xmltoolkit28(self): |
| 2223 | # .//tag causes exceptions |
| 2224 | |
| 2225 | tree = ET.XML("<doc><table><tbody/></table></doc>") |
| 2226 | self.assertEqual(summarize_list(tree.findall(".//thead")), []) |
| 2227 | self.assertEqual(summarize_list(tree.findall(".//tbody")), ['tbody']) |
| 2228 | |
| 2229 | def test_bug_xmltoolkitX1(self): |
| 2230 | # dump() doesn't flush the output buffer |
nothing calls this directly
no test coverage detected