()
| 757 | #[test] |
| 758 | #[serial] |
| 759 | fn test_log_run_short_format_empty() { |
| 760 | let _guard = TestGuard::new(); |
| 761 | |
| 762 | // Initialize repository |
| 763 | let _repo = Repository::init(".").unwrap(); |
| 764 | |
| 765 | let log = Log::new().with_format(LogFormat::Short); |
| 766 | let result = log.run(); |
| 767 | |
| 768 | // Result could fail due to database issues; just don't panic |
| 769 | let _ = result; |
| 770 | } |
| 771 | |
| 772 | #[test] |
| 773 | #[serial] |
nothing calls this directly
no test coverage detected