()
| 904 | /// Test with_dry_run builder method. |
| 905 | #[test] |
| 906 | fn test_pull_with_dry_run() { |
| 907 | let pull = Pull::new().with_dry_run(true); |
| 908 | assert!(pull.dry_run); |
| 909 | |
| 910 | let pull = Pull::new().with_dry_run(false); |
| 911 | assert!(!pull.dry_run); |
| 912 | } |
| 913 | |
| 914 | /// Test with_all builder method. |
| 915 | #[test] |
nothing calls this directly
no test coverage detected