(self)
| 1211 | |
| 1212 | class XMLEqualTests(SimpleTestCase): |
| 1213 | def test_simple_equal(self): |
| 1214 | xml1 = "<elem attr1='a' attr2='b' />" |
| 1215 | xml2 = "<elem attr1='a' attr2='b' />" |
| 1216 | self.assertXMLEqual(xml1, xml2) |
| 1217 | |
| 1218 | def test_simple_equal_unordered(self): |
| 1219 | xml1 = "<elem attr1='a' attr2='b' />" |
nothing calls this directly
no test coverage detected