Test dumping then loading an object.
(self)
| 5 | |
| 6 | class TestEncodingDecoding(TestCase): |
| 7 | def test_dump_load(self): |
| 8 | """ |
| 9 | Test dumping then loading an object. |
| 10 | """ |
| 11 | payload = {"a": [1, 2, 3]} |
| 12 | self.assertEqual(load_json(dump_json(payload)), payload) |
nothing calls this directly
no test coverage detected