MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_issue6565

Method test_issue6565

Lib/test/test_xml_etree.py:2441–2446  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2439
2440 @unittest.expectedFailure # TODO: RUSTPYTHON
2441 def test_issue6565(self):
2442 elem = ET.XML("<body><tag/></body>")
2443 self.assertEqual(summarize_list(elem), ['tag'])
2444 newelem = ET.XML(SAMPLE_XML)
2445 elem[:] = newelem[:]
2446 self.assertEqual(summarize_list(elem), ['tag', 'tag', 'section'])
2447
2448 def test_issue10777(self):
2449 # Registering a namespace twice caused a "dictionary changed size during

Callers

nothing calls this directly

Calls 2

summarize_listFunction · 0.85
assertEqualMethod · 0.45

Tested by

no test coverage detected