(self)
| 1177 | self.assertJSONEqual(valid_json, invalid_json) |
| 1178 | |
| 1179 | def test_simple_not_equal(self): |
| 1180 | json1 = '{"attr1": "foo", "attr2":"baz"}' |
| 1181 | json2 = '{"attr2":"baz"}' |
| 1182 | self.assertJSONNotEqual(json1, json2) |
| 1183 | |
| 1184 | def test_simple_not_equal_raise(self): |
| 1185 | json1 = '{"attr1": "foo", "attr2":"baz"}' |
nothing calls this directly
no test coverage detected