()
| 817 | #[test] |
| 818 | #[serial] |
| 819 | fn test_log_run_with_from_sequence() { |
| 820 | let _guard = TestGuard::new(); |
| 821 | |
| 822 | // Initialize repository and drop to release db lock |
| 823 | { |
| 824 | let _repo = Repository::init(".").unwrap(); |
| 825 | } |
| 826 | |
| 827 | let log = Log::new().with_from(0); |
| 828 | let result = log.run(); |
| 829 | |
| 830 | // Result could fail due to database issues; just don't panic |
| 831 | let _ = result; |
| 832 | } |
| 833 | |
| 834 | #[test] |
| 835 | #[serial] |