()
| 860 | /// Test with_timeout builder method. |
| 861 | #[test] |
| 862 | fn test_pull_with_timeout() { |
| 863 | let pull = Pull::new().with_timeout(60); |
| 864 | assert_eq!(pull.timeout, 60); |
| 865 | } |
| 866 | |
| 867 | /// Test with_download_only builder method. |
| 868 | #[test] |
nothing calls this directly
no test coverage detected