()
| 574 | |
| 575 | #[test] |
| 576 | fn test_header_has_description() { |
| 577 | let without = ChangeHeader::new("Test"); |
| 578 | assert!(!without.has_description()); |
| 579 | |
| 580 | let with = ChangeHeader::builder() |
| 581 | .message("Test") |
| 582 | .description("Details") |
| 583 | .build(); |
| 584 | assert!(with.has_description()); |
| 585 | } |
| 586 | |
| 587 | #[test] |
| 588 | fn test_header_has_authors() { |
nothing calls this directly
no test coverage detected