()
| 306 | |
| 307 | #[test] |
| 308 | fn test_move_builder_chain() { |
| 309 | let cmd = Move::new("src/old.rs", "src/new.rs") |
| 310 | .with_dry_run(true) |
| 311 | .with_force(true); |
| 312 | |
| 313 | assert_eq!(cmd.source, "src/old.rs"); |
| 314 | assert_eq!(cmd.destination, "src/new.rs"); |
| 315 | assert!(cmd.dry_run); |
| 316 | assert!(cmd.force); |
| 317 | } |
| 318 | |
| 319 | // Path Resolution Tests |
| 320 |
nothing calls this directly
no test coverage detected