()
| 121 | |
| 122 | |
| 123 | def test_encode_enc_hook(): |
| 124 | msg = msgspec.yaml.encode(Decimal(1.5), enc_hook=str) |
| 125 | assert msgspec.yaml.decode(msg) == "1.5" |
| 126 | |
| 127 | |
| 128 | @pytest.mark.parametrize("order", [None, "deterministic"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…