()
| 916 | /// Test with_remote builder method. |
| 917 | #[test] |
| 918 | fn test_pull_with_remote() { |
| 919 | let pull = Pull::new().with_remote("upstream"); |
| 920 | assert_eq!(pull.remote.as_deref(), Some("upstream")); |
| 921 | } |
| 922 | |
| 923 | /// Test with_remote with URL. |
| 924 | #[test] |
nothing calls this directly
no test coverage detected