()
| 975 | /// Test with_download_only builder method. |
| 976 | #[test] |
| 977 | fn test_pull_with_download_only() { |
| 978 | let pull = Pull::new().with_download_only(true); |
| 979 | assert!(pull.download_only); |
| 980 | } |
| 981 | |
| 982 | /// Test chaining multiple builder methods. |
| 983 | #[test] |
nothing calls this directly
no test coverage detected