()
| 1227 | /// Test with_all_views builder method. |
| 1228 | #[test] |
| 1229 | fn test_clone_with_all_views() { |
| 1230 | let clone = Clone::new("https://example.com/repo".to_string()).with_all_views(true); |
| 1231 | assert!(clone.all_views); |
| 1232 | } |
| 1233 | |
| 1234 | /// Test chaining multiple builder methods. |
| 1235 | #[test] |
nothing calls this directly
no test coverage detected