()
| 948 | |
| 949 | #[test] |
| 950 | fn test_push_with_remote_url() { |
| 951 | let push = Push::new().with_remote("https://api.example.com/repo"); |
| 952 | assert_eq!( |
| 953 | push.remote, |
| 954 | Some("https://api.example.com/repo".to_string()) |
| 955 | ); |
| 956 | } |
| 957 | |
| 958 | #[test] |
| 959 | fn test_push_with_to_view() { |
nothing calls this directly
no test coverage detected