()
| 36 | |
| 37 | #[test] |
| 38 | fn json_passthrough() { |
| 39 | let json_str = r#"[{"id":1}]"#; |
| 40 | let result = decode_payload_to_json(json_str.as_bytes()); |
| 41 | assert_eq!(result, json_str); |
| 42 | } |
| 43 | |
| 44 | #[test] |
| 45 | fn msgpack_to_json_roundtrip() { |
nothing calls this directly
no test coverage detected