()
| 953 | |
| 954 | #[test] |
| 955 | fn test_push_with_remote() { |
| 956 | let push = Push::new().with_remote("upstream"); |
| 957 | assert_eq!(push.remote, Some("upstream".to_string())); |
| 958 | } |
| 959 | |
| 960 | #[test] |
| 961 | fn test_push_with_remote_url() { |
nothing calls this directly
no test coverage detected