()
| 769 | /// Test with_insecure builder method. |
| 770 | #[test] |
| 771 | fn test_clone_with_insecure() { |
| 772 | let clone = Clone::new("https://example.com/repo".to_string()).with_insecure(true); |
| 773 | assert!(clone.insecure); |
| 774 | } |
| 775 | |
| 776 | /// Test with_timeout builder method. |
| 777 | #[test] |
nothing calls this directly
no test coverage detected