()
| 666 | /// Test with_path builder method. |
| 667 | #[test] |
| 668 | fn test_clone_with_path() { |
| 669 | let clone = Clone::new("https://example.com/repo".to_string()).with_path("my-project"); |
| 670 | assert_eq!(clone.path, Some("my-project".to_string())); |
| 671 | } |
| 672 | |
| 673 | /// Test with_view builder method. |
| 674 | #[test] |