()
| 616 | |
| 617 | #[test] |
| 618 | fn test_add_with_recursive_true() { |
| 619 | let add = Add::new().with_recursive(true); |
| 620 | assert!(add.recursive); |
| 621 | assert!(!add.no_recursive); |
| 622 | } |
| 623 | |
| 624 | #[test] |
| 625 | fn test_add_with_recursive_false() { |
nothing calls this directly
no test coverage detected