()
| 837 | /// Test with_timeout builder method. |
| 838 | #[test] |
| 839 | fn test_pull_with_timeout() { |
| 840 | let pull = Pull::new().with_timeout(60); |
| 841 | assert_eq!(pull.timeout, 60); |
| 842 | } |
| 843 | |
| 844 | /// Test with_download_only builder method. |
| 845 | #[test] |
nothing calls this directly
no test coverage detected