()
| 968 | /// Test with_timeout builder method. |
| 969 | #[test] |
| 970 | fn test_pull_with_timeout() { |
| 971 | let pull = Pull::new().with_timeout(60); |
| 972 | assert_eq!(pull.timeout, 60); |
| 973 | } |
| 974 | |
| 975 | /// Test with_download_only builder method. |
| 976 | #[test] |
nothing calls this directly
no test coverage detected