()
| 836 | /// Test with_dry_run builder method. |
| 837 | #[test] |
| 838 | fn test_pull_with_dry_run() { |
| 839 | let pull = Pull::new().with_dry_run(true); |
| 840 | assert!(pull.dry_run); |
| 841 | |
| 842 | let pull = Pull::new().with_dry_run(false); |
| 843 | assert!(!pull.dry_run); |
| 844 | } |
| 845 | |
| 846 | /// Test with_all builder method. |
| 847 | #[test] |
nothing calls this directly
no test coverage detected