()
| 386 | |
| 387 | #[test] |
| 388 | fn test_remove_builder_chain() { |
| 389 | let cmd = Remove::new(vec!["file.txt".to_string()]) |
| 390 | .with_keep(true) |
| 391 | .with_dry_run(true) |
| 392 | .with_force(true); |
| 393 | |
| 394 | assert!(cmd.keep); |
| 395 | assert!(cmd.dry_run); |
| 396 | assert!(cmd.force); |
| 397 | } |
| 398 | |
| 399 | // Options Conversion Tests |
| 400 |
nothing calls this directly
no test coverage detected