()
| 944 | /// Test with_dry_run builder method. |
| 945 | #[test] |
| 946 | fn test_pull_with_dry_run() { |
| 947 | let pull = Pull::new().with_dry_run(true); |
| 948 | assert!(pull.dry_run); |
| 949 | |
| 950 | let pull = Pull::new().with_dry_run(false); |
| 951 | assert!(!pull.dry_run); |
| 952 | } |
| 953 | |
| 954 | /// Test with_all builder method. |
| 955 | #[test] |
nothing calls this directly
no test coverage detected