()
| 630 | |
| 631 | #[test] |
| 632 | fn test_add_builder_chain() { |
| 633 | let add = Add::new() |
| 634 | .with_files(vec!["src/", "tests/"]) |
| 635 | .with_dry_run(true) |
| 636 | .with_force(true) |
| 637 | .with_recursive(true); |
| 638 | |
| 639 | assert_eq!(add.files.len(), 2); |
| 640 | assert!(add.dry_run); |
| 641 | assert!(add.force); |
| 642 | assert!(add.recursive); |
| 643 | } |
| 644 | |
| 645 | // TrackingOptions Conversion Tests |
| 646 |
nothing calls this directly
no test coverage detected