()
| 1097 | |
| 1098 | #[test] |
| 1099 | fn test_turn_changes_summary_single_modified() { |
| 1100 | let changes = TurnChanges::new().with_modified(vec![PathBuf::from("a.rs")]); |
| 1101 | assert_eq!(changes.summary(), "1 file changed (1 modified)"); |
| 1102 | } |
| 1103 | |
| 1104 | #[test] |
| 1105 | fn test_turn_changes_summary_multiple() { |
nothing calls this directly
no test coverage detected