()
| 924 | |
| 925 | #[test] |
| 926 | fn test_file_diff_debug() { |
| 927 | let diff = FileDiff::modified("test.rs"); |
| 928 | let debug = format!("{:?}", diff); |
| 929 | assert!(debug.contains("FileDiff")); |
| 930 | } |
| 931 | |
| 932 | #[test] |
| 933 | fn test_file_change_status_debug() { |
nothing calls this directly
no test coverage detected