()
| 979 | /// Test with_insecure builder method. |
| 980 | #[test] |
| 981 | fn test_clone_with_insecure() { |
| 982 | let clone = Clone::new("https://example.com/repo".to_string()).with_insecure(true); |
| 983 | assert!(clone.insecure); |
| 984 | } |
| 985 | |
| 986 | /// Test with_timeout builder method. |
| 987 | #[test] |
nothing calls this directly
no test coverage detected