()
| 949 | |
| 950 | #[test] |
| 951 | fn test_long_format_no_panic_empty() { |
| 952 | let status = Status::new(); |
| 953 | let repo_status = RepositoryStatus::new("dev".to_string(), None); |
| 954 | // Should not panic |
| 955 | let result = status.print_long_format(&repo_status); |
| 956 | assert!(result.is_ok()); |
| 957 | } |
| 958 | |
| 959 | #[test] |
| 960 | fn test_long_format_no_panic_with_entries() { |
nothing calls this directly
no test coverage detected