()
| 753 | |
| 754 | #[test] |
| 755 | fn test_json_change_debug() { |
| 756 | let change = create_test_change(); |
| 757 | let hash = Hash::of(b"test"); |
| 758 | let json_change = JsonChange::from_change(&change, &hash, None); |
| 759 | let debug_str = format!("{:?}", json_change); |
| 760 | assert!(debug_str.contains("JsonChange")); |
| 761 | } |
| 762 | |
| 763 | #[test] |
| 764 | fn test_json_author_clone() { |
nothing calls this directly
no test coverage detected