()
| 680 | /// Test with_insecure builder method. |
| 681 | #[test] |
| 682 | fn test_clone_with_insecure() { |
| 683 | let clone = Clone::new("https://example.com/repo".to_string()).with_insecure(true); |
| 684 | assert!(clone.insecure); |
| 685 | } |
| 686 | |
| 687 | /// Test with_timeout builder method. |
| 688 | #[test] |
nothing calls this directly
no test coverage detected