()
| 510 | |
| 511 | #[test] |
| 512 | fn test_format_short_single_entry() { |
| 513 | let log = Log::new(); |
| 514 | let entry = create_test_entry_with_header(); |
| 515 | let output = log.format_short(&[entry], 8); |
| 516 | |
| 517 | assert!(output.contains("Test change message")); |
| 518 | assert!(output.ends_with('\n')); |
| 519 | } |
| 520 | |
| 521 | #[test] |
| 522 | fn test_format_short_multiple_entries() { |
nothing calls this directly
no test coverage detected