()
| 928 | /// Test with_timeout builder method. |
| 929 | #[test] |
| 930 | fn test_pull_with_timeout() { |
| 931 | let pull = Pull::new().with_timeout(60); |
| 932 | assert_eq!(pull.timeout, 60); |
| 933 | } |
| 934 | |
| 935 | /// Test with_download_only builder method. |
| 936 | #[test] |
nothing calls this directly
no test coverage detected