()
| 1089 | |
| 1090 | #[test] |
| 1091 | fn test_turn_changes_summary_single_modified() { |
| 1092 | let changes = TurnChanges::new().with_modified(vec![PathBuf::from("a.rs")]); |
| 1093 | assert_eq!(changes.summary(), "1 file changed (1 modified)"); |
| 1094 | } |
| 1095 | |
| 1096 | #[test] |
| 1097 | fn test_turn_changes_summary_multiple() { |
nothing calls this directly
no test coverage detected