()
| 787 | #[test] |
| 788 | #[serial] |
| 789 | fn test_log_run_with_count() { |
| 790 | let _guard = TestGuard::new(); |
| 791 | |
| 792 | // Initialize repository |
| 793 | let _repo = Repository::init(".").unwrap(); |
| 794 | |
| 795 | let log = Log::new().with_count(5); |
| 796 | let result = log.run(); |
| 797 | |
| 798 | // Result could fail due to database issues; just don't panic |
| 799 | let _ = result; |
| 800 | } |
| 801 | |
| 802 | #[test] |
| 803 | #[serial] |
nothing calls this directly
no test coverage detected