()
| 650 | #[test] |
| 651 | #[serial] |
| 652 | fn test_change_run_short_format() { |
| 653 | let _guard = TestGuard::new(); |
| 654 | |
| 655 | let _repo = Repository::init(".").unwrap(); |
| 656 | |
| 657 | let cmd = ChangeCmd::new().with_format(ChangeFormat::Short); |
| 658 | let result = cmd.run(); |
| 659 | |
| 660 | // Will fail (no changes) but shouldn't panic |
| 661 | assert!(result.is_err()); |
| 662 | } |
| 663 | |
| 664 | #[test] |
| 665 | #[serial] |
nothing calls this directly
no test coverage detected