(self)
| 1216 | self.assertXMLEqual(xml1, xml2) |
| 1217 | |
| 1218 | def test_simple_equal_unordered(self): |
| 1219 | xml1 = "<elem attr1='a' attr2='b' />" |
| 1220 | xml2 = "<elem attr2='b' attr1='a' />" |
| 1221 | self.assertXMLEqual(xml1, xml2) |
| 1222 | |
| 1223 | def test_simple_equal_raise(self): |
| 1224 | xml1 = "<elem attr1='a' />" |
nothing calls this directly
no test coverage detected