()
| 367 | |
| 368 | #[test] |
| 369 | fn test_remove_with_recursive() { |
| 370 | let cmd = Remove::new(vec!["dir/".to_string()]).with_recursive(false); |
| 371 | assert!(!cmd.recursive); |
| 372 | assert!(cmd.no_recursive); |
| 373 | } |
| 374 | |
| 375 | #[test] |
| 376 | fn test_remove_with_dry_run() { |
nothing calls this directly
no test coverage detected