()
| 942 | |
| 943 | #[test] |
| 944 | fn test_push_with_remote() { |
| 945 | let push = Push::new().with_remote("upstream"); |
| 946 | assert_eq!(push.remote, Some("upstream".to_string())); |
| 947 | } |
| 948 | |
| 949 | #[test] |
| 950 | fn test_push_with_remote_url() { |
nothing calls this directly
no test coverage detected