()
| 619 | #[test] |
| 620 | #[serial] |
| 621 | fn test_change_run_short_format() { |
| 622 | let _guard = TestGuard::new(); |
| 623 | |
| 624 | let _repo = Repository::init(".").unwrap(); |
| 625 | |
| 626 | let cmd = ChangeCmd::new().with_format(ChangeFormat::Short); |
| 627 | let result = cmd.run(); |
| 628 | |
| 629 | // Will fail (no changes) but shouldn't panic |
| 630 | assert!(result.is_err()); |
| 631 | } |
| 632 | |
| 633 | #[test] |
| 634 | #[serial] |
nothing calls this directly
no test coverage detected