()
| 1103 | /// Test with_timeout builder method. |
| 1104 | #[test] |
| 1105 | fn test_pull_with_timeout() { |
| 1106 | let pull = Pull::new().with_timeout(60); |
| 1107 | assert_eq!(pull.timeout, 60); |
| 1108 | } |
| 1109 | |
| 1110 | /// Test with_download_only builder method. |
| 1111 | #[test] |
nothing calls this directly
no test coverage detected