()
| 1115 | |
| 1116 | #[test] |
| 1117 | fn test_turn_changes_summary_only_added() { |
| 1118 | let changes = TurnChanges::new().with_added(vec![PathBuf::from("a"), PathBuf::from("b")]); |
| 1119 | assert_eq!(changes.summary(), "2 files changed (2 added)"); |
| 1120 | } |
| 1121 | |
| 1122 | #[test] |
| 1123 | fn test_turn_changes_display_delegates_to_summary() { |
nothing calls this directly
no test coverage detected