()
| 1207 | /// Test with_timeout builder method. |
| 1208 | #[test] |
| 1209 | fn test_clone_with_timeout() { |
| 1210 | let clone = Clone::new("https://example.com/repo".to_string()).with_timeout(60); |
| 1211 | assert_eq!(clone.timeout, 60); |
| 1212 | } |
| 1213 | |
| 1214 | /// Test with_download_only builder method. |
| 1215 | #[test] |
nothing calls this directly
no test coverage detected