blob: 326189aa190faeade0143adf0fa27b63147c1310 (
plain)
1
2
3
4
5
6
7
8
9
|
fn op_sync_serialize_object_with_numbers_as_keys(
value: serde_json::Value,
) -> Result<(), Error> {
assert_eq!(
value.to_string(),
r#"{"lines":{"100":{"unit":"m"},"200":{"unit":"cm"}}}"#
);
Ok(())
}
|