()
| 935 | /// Test with_download_only builder method. |
| 936 | #[test] |
| 937 | fn test_pull_with_download_only() { |
| 938 | let pull = Pull::new().with_download_only(true); |
| 939 | assert!(pull.download_only); |
| 940 | } |
| 941 | |
| 942 | /// Test chaining multiple builder methods. |
| 943 | #[test] |
nothing calls this directly
no test coverage detected