()
| 815 | /// Test with_remote with URL. |
| 816 | #[test] |
| 817 | fn test_pull_with_remote_url() { |
| 818 | let pull = Pull::new().with_remote("https://example.com/repo"); |
| 819 | assert_eq!(pull.remote.as_deref(), Some("https://example.com/repo")); |
| 820 | } |
| 821 | |
| 822 | /// Test with_to_view builder method. |
| 823 | #[test] |
nothing calls this directly
no test coverage detected