()
| 876 | /// Test with_remote builder method. |
| 877 | #[test] |
| 878 | fn test_pull_with_remote() { |
| 879 | let pull = Pull::new().with_remote("upstream"); |
| 880 | assert_eq!(pull.remote.as_deref(), Some("upstream")); |
| 881 | } |
| 882 | |
| 883 | /// Test with_remote with URL. |
| 884 | #[test] |
nothing calls this directly
no test coverage detected