()
| 518 | |
| 519 | #[test] |
| 520 | fn test_summary_untracked_only() { |
| 521 | let status = empty_status(); |
| 522 | let untracked = vec![ |
| 523 | "src/main.rs".to_string(), |
| 524 | "Cargo.toml".to_string(), |
| 525 | "README.md".to_string(), |
| 526 | ]; |
| 527 | let summary = build_file_change_summary(&status, &untracked); |
| 528 | assert_eq!(summary, "Add main.rs, Cargo.toml, README.md"); |
| 529 | } |
| 530 | |
| 531 | #[test] |
| 532 | fn test_summary_empty() { |
nothing calls this directly
no test coverage detected