()
| 794 | /// Test with_timeout builder method. |
| 795 | #[test] |
| 796 | fn test_clone_with_timeout() { |
| 797 | let clone = Clone::new("https://example.com/repo".to_string()).with_timeout(60); |
| 798 | assert_eq!(clone.timeout, 60); |
| 799 | } |
| 800 | |
| 801 | /// Test with_download_only builder method. |
| 802 | #[test] |
nothing calls this directly
no test coverage detected