()
| 646 | |
| 647 | #[test] |
| 648 | fn test_get_tracking_options_default() { |
| 649 | let add = Add::new(); |
| 650 | let options = add.get_tracking_options(); |
| 651 | assert!(options.recursive); |
| 652 | assert!(!options.force); |
| 653 | assert!(!options.dry_run); |
| 654 | } |
| 655 | |
| 656 | #[test] |
| 657 | fn test_get_tracking_options_non_recursive() { |
nothing calls this directly
no test coverage detected