()
| 630 | |
| 631 | #[test] |
| 632 | fn test_header_format_display() { |
| 633 | let header = ChangeHeader::builder() |
| 634 | .message("Test message") |
| 635 | .author(Author::new("Alice", Some("alice@example.com"))) |
| 636 | .build(); |
| 637 | |
| 638 | let formatted = header.format_display(); |
| 639 | assert!(formatted.contains("Author: Alice <alice@example.com>")); |
| 640 | assert!(formatted.contains("Test message")); |
| 641 | } |
| 642 | |
| 643 | #[test] |
| 644 | fn test_header_default() { |
nothing calls this directly
no test coverage detected