(val)
| 72 | ], |
| 73 | ) |
| 74 | def test_roundtrip_any(val): |
| 75 | msg = msgspec.yaml.encode(val) |
| 76 | res = msgspec.yaml.decode(msg) |
| 77 | assert res == val |
| 78 | |
| 79 | |
| 80 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…