(self)
| 74 | self.assertEqual(doc, self.round_tripped(doc, **kwargs)) |
| 75 | |
| 76 | def test_basic(self): |
| 77 | self.round_trip({"hello": "world"}) |
| 78 | |
| 79 | def test_loads_bytes(self): |
| 80 | string = b'{"hello": "world"}' |
nothing calls this directly
no test coverage detected