()
| 338 | |
| 339 | @pytest.mark.skip("Great module migration") |
| 340 | def test_serialize_python(): |
| 341 | data = {"foo": "bar"} |
| 342 | serialized = python.serialize(data) # pylint: disable=undefined-variable |
| 343 | expected = repr({"foo": "bar"}) |
| 344 | assert serialized == expected, serialized |
| 345 | |
| 346 | |
| 347 | @pytest.mark.skipif( |