()
| 585 | |
| 586 | #[test] |
| 587 | fn test_restore_clone() { |
| 588 | let cmd = Restore::new() |
| 589 | .with_files(vec!["file.txt".to_string()]) |
| 590 | .with_force(true); |
| 591 | let cloned = cmd.clone(); |
| 592 | |
| 593 | assert_eq!(cloned.files, cmd.files); |
| 594 | assert_eq!(cloned.force, cmd.force); |
| 595 | } |
| 596 | |
| 597 | // Guard Logic Tests (requires_force) |
| 598 |
nothing calls this directly
no test coverage detected