()
| 972 | |
| 973 | #[test] |
| 974 | fn test_long_format_with_state() { |
| 975 | let status = Status::new(); |
| 976 | let state = Merkle::initial(); |
| 977 | let repo_status = RepositoryStatus::new("dev".to_string(), Some(state)); |
| 978 | |
| 979 | let result = status.print_long_format(&repo_status); |
| 980 | assert!(result.is_ok()); |
| 981 | } |
| 982 | |
| 983 | // Integration Tests (require temp directories) |
| 984 |
nothing calls this directly
no test coverage detected