()
| 501 | |
| 502 | #[test] |
| 503 | fn test_restore_builder_chain() { |
| 504 | let cmd = Restore::new() |
| 505 | .with_files(vec!["src/main.rs".to_string()]) |
| 506 | .with_dry_run(true) |
| 507 | .with_force(true); |
| 508 | |
| 509 | assert_eq!(cmd.files, vec!["src/main.rs"]); |
| 510 | assert!(cmd.dry_run); |
| 511 | assert!(cmd.force); |
| 512 | } |
| 513 | |
| 514 | // Partial Restore Tests |
| 515 |
nothing calls this directly
no test coverage detected