()
| 923 | /// Test with_remote with URL. |
| 924 | #[test] |
| 925 | fn test_pull_with_remote_url() { |
| 926 | let pull = Pull::new().with_remote("https://example.com/repo"); |
| 927 | assert_eq!(pull.remote.as_deref(), Some("https://example.com/repo")); |
| 928 | } |
| 929 | |
| 930 | /// Test with_to_view builder method. |
| 931 | #[test] |
nothing calls this directly
no test coverage detected