()
| 742 | #[test] |
| 743 | #[serial] |
| 744 | fn test_log_run_json_empty() { |
| 745 | let _guard = TestGuard::new(); |
| 746 | |
| 747 | // Initialize repository |
| 748 | let _repo = Repository::init(".").unwrap(); |
| 749 | |
| 750 | let log = Log::new().with_format(LogFormat::Json); |
| 751 | let result = log.run(); |
| 752 | |
| 753 | // Result could fail due to database issues; just don't panic |
| 754 | let _ = result; |
| 755 | } |
| 756 | |
| 757 | #[test] |
| 758 | #[serial] |
nothing calls this directly
no test coverage detected