()
| 380 | |
| 381 | #[test] |
| 382 | fn test_remove_with_force() { |
| 383 | let cmd = Remove::new(vec!["file.txt".to_string()]).with_force(true); |
| 384 | assert!(cmd.force); |
| 385 | } |
| 386 | |
| 387 | #[test] |
| 388 | fn test_remove_builder_chain() { |
nothing calls this directly
no test coverage detected