()
| 813 | /// Test with_dry_run builder method. |
| 814 | #[test] |
| 815 | fn test_pull_with_dry_run() { |
| 816 | let pull = Pull::new().with_dry_run(true); |
| 817 | assert!(pull.dry_run); |
| 818 | |
| 819 | let pull = Pull::new().with_dry_run(false); |
| 820 | assert!(!pull.dry_run); |
| 821 | } |
| 822 | |
| 823 | /// Test with_all builder method. |
| 824 | #[test] |
nothing calls this directly
no test coverage detected