()
| 802 | #[test] |
| 803 | #[serial] |
| 804 | fn test_log_run_with_reverse() { |
| 805 | let _guard = TestGuard::new(); |
| 806 | |
| 807 | // Initialize repository |
| 808 | let _repo = Repository::init(".").unwrap(); |
| 809 | |
| 810 | let log = Log::new().with_reverse(true); |
| 811 | let result = log.run(); |
| 812 | |
| 813 | // Result could fail due to database issues; just don't panic |
| 814 | let _ = result; |
| 815 | } |
| 816 | |
| 817 | #[test] |
| 818 | #[serial] |
nothing calls this directly
no test coverage detected