(obj)
| 5 | |
| 6 | |
| 7 | def round_trip_test(obj): |
| 8 | # serde_json and Python's json module produce slightly differently spaced |
| 9 | # output; direct string comparison can't pass on both so we use this as a |
| 10 | # proxy |
| 11 | return obj == json.loads(json.dumps(obj)) |
| 12 | |
| 13 | |
| 14 | def json_dump(obj): |
no test coverage detected