(value: &Value, schema: &Schema)
| 381 | use uuid::Uuid; |
| 382 | |
| 383 | pub(crate) fn success(value: &Value, schema: &Schema) -> String { |
| 384 | format!("Value: {value:?}\n should encode with schema:\n{schema:?}") |
| 385 | } |
| 386 | |
| 387 | #[test] |
| 388 | fn test_encode_empty_array() { |
no outgoing calls