()
| 456 | |
| 457 | #[test] |
| 458 | fn test_remove_clone() { |
| 459 | let cmd = Remove::new(vec!["file.txt".to_string()]) |
| 460 | .with_keep(true) |
| 461 | .with_force(true); |
| 462 | let cloned = cmd.clone(); |
| 463 | assert_eq!(cloned.paths, cmd.paths); |
| 464 | assert_eq!(cloned.keep, cmd.keep); |
| 465 | assert_eq!(cloned.force, cmd.force); |
| 466 | } |
| 467 | } |
nothing calls this directly
no test coverage detected