()
| 787 | /// Test with_insecure builder method. |
| 788 | #[test] |
| 789 | fn test_clone_with_insecure() { |
| 790 | let clone = Clone::new("https://example.com/repo".to_string()).with_insecure(true); |
| 791 | assert!(clone.insecure); |
| 792 | } |
| 793 | |
| 794 | /// Test with_timeout builder method. |
| 795 | #[test] |
nothing calls this directly
no test coverage detected