()
| 853 | |
| 854 | #[test] |
| 855 | fn test_push_with_remote_url() { |
| 856 | let push = Push::new().with_remote("https://example.com/repo"); |
| 857 | assert_eq!(push.remote.as_deref(), Some("https://example.com/repo")); |
| 858 | } |
| 859 | |
| 860 | #[test] |
| 861 | fn test_push_with_to_view() { |
nothing calls this directly
no test coverage detected