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