()
| 374 | |
| 375 | #[test] |
| 376 | fn test_remove_with_dry_run() { |
| 377 | let cmd = Remove::new(vec!["file.txt".to_string()]).with_dry_run(true); |
| 378 | assert!(cmd.dry_run); |
| 379 | } |
| 380 | |
| 381 | #[test] |
| 382 | fn test_remove_with_force() { |
nothing calls this directly
no test coverage detected