()
| 965 | /// Test with_path builder method. |
| 966 | #[test] |
| 967 | fn test_clone_with_path() { |
| 968 | let clone = Clone::new("https://example.com/repo".to_string()).with_path("my-project"); |
| 969 | assert_eq!(clone.path, Some("my-project".to_string())); |
| 970 | } |
| 971 | |
| 972 | /// Test with_view builder method. |
| 973 | #[test] |