()
| 849 | #[test] |
| 850 | #[serial] |
| 851 | fn test_log_run_with_full_hash() { |
| 852 | let _guard = TestGuard::new(); |
| 853 | |
| 854 | // Initialize repository |
| 855 | let _repo = Repository::init(".").unwrap(); |
| 856 | |
| 857 | let log = Log::new().with_full_hash(true); |
| 858 | let result = log.run(); |
| 859 | |
| 860 | // Result could fail due to database issues; just don't panic |
| 861 | let _ = result; |
| 862 | } |
| 863 | |
| 864 | #[test] |
| 865 | #[serial] |
nothing calls this directly
no test coverage detected