(self)
| 1158 | self.assertJSONEqual(json1, json2) |
| 1159 | |
| 1160 | def test_simple_equal_unordered(self): |
| 1161 | json1 = '{"attr1": "foo", "attr2":"baz"}' |
| 1162 | json2 = '{"attr2":"baz", "attr1": "foo"}' |
| 1163 | self.assertJSONEqual(json1, json2) |
| 1164 | |
| 1165 | def test_simple_equal_raise(self): |
| 1166 | json1 = '{"attr1": "foo", "attr2":"baz"}' |
nothing calls this directly
no test coverage detected