()
| 785 | /// Test with_remote builder method. |
| 786 | #[test] |
| 787 | fn test_pull_with_remote() { |
| 788 | let pull = Pull::new().with_remote("upstream"); |
| 789 | assert_eq!(pull.remote, "upstream"); |
| 790 | } |
| 791 | |
| 792 | /// Test with_remote with URL. |
| 793 | #[test] |
nothing calls this directly
no test coverage detected