()
| 1200 | /// Test with_insecure builder method. |
| 1201 | #[test] |
| 1202 | fn test_clone_with_insecure() { |
| 1203 | let clone = Clone::new("https://example.com/repo".to_string()).with_insecure(true); |
| 1204 | assert!(clone.insecure); |
| 1205 | } |
| 1206 | |
| 1207 | /// Test with_timeout builder method. |
| 1208 | #[test] |
nothing calls this directly
no test coverage detected