()
| 959 | |
| 960 | #[test] |
| 961 | fn test_push_with_remote_url() { |
| 962 | let push = Push::new().with_remote("https://api.example.com/repo"); |
| 963 | assert_eq!( |
| 964 | push.remote, |
| 965 | Some("https://api.example.com/repo".to_string()) |
| 966 | ); |
| 967 | } |
| 968 | |
| 969 | #[test] |
| 970 | fn test_push_with_to_view() { |
nothing calls this directly
no test coverage detected