()
| 618 | |
| 619 | #[test] |
| 620 | fn test_leaf_serde() { |
| 621 | let leaf = make_leaf(); |
| 622 | let json = serde_json::to_string(&leaf).unwrap(); |
| 623 | let decoded: Leaf = serde_json::from_str(&json).unwrap(); |
| 624 | assert_eq!(leaf, decoded); |
| 625 | } |
| 626 | |
| 627 | // ------------------------------------------------------------------------- |
| 628 | // LeafOp Tests |