()
| 722 | |
| 723 | #[test] |
| 724 | fn test_json_change_debug() { |
| 725 | let change = create_test_change(); |
| 726 | let hash = Hash::of(b"test"); |
| 727 | let json_change = JsonChange::from_change(&change, &hash, None); |
| 728 | let debug_str = format!("{:?}", json_change); |
| 729 | assert!(debug_str.contains("JsonChange")); |
| 730 | } |
| 731 | |
| 732 | #[test] |
| 733 | fn test_json_author_clone() { |
nothing calls this directly
no test coverage detected