()
| 1006 | /// Test with_all_views builder method. |
| 1007 | #[test] |
| 1008 | fn test_clone_with_all_views() { |
| 1009 | let clone = Clone::new("https://example.com/repo".to_string()).with_all_views(true); |
| 1010 | assert!(clone.all_views); |
| 1011 | } |
| 1012 | |
| 1013 | /// Test chaining multiple builder methods. |
| 1014 | #[test] |
nothing calls this directly
no test coverage detected