()
| 844 | /// Test with_download_only builder method. |
| 845 | #[test] |
| 846 | fn test_pull_with_download_only() { |
| 847 | let pull = Pull::new().with_download_only(true); |
| 848 | assert!(pull.download_only); |
| 849 | } |
| 850 | |
| 851 | /// Test chaining multiple builder methods. |
| 852 | #[test] |
nothing calls this directly
no test coverage detected