()
| 687 | /// Test with_timeout builder method. |
| 688 | #[test] |
| 689 | fn test_clone_with_timeout() { |
| 690 | let clone = Clone::new("https://example.com/repo".to_string()).with_timeout(60); |
| 691 | assert_eq!(clone.timeout, 60); |
| 692 | } |
| 693 | |
| 694 | /// Test with_download_only builder method. |
| 695 | #[test] |
nothing calls this directly
no test coverage detected