()
| 920 | |
| 921 | #[test] |
| 922 | fn test_push_debug() { |
| 923 | let push = Push::new().with_remote("origin"); |
| 924 | let debug_str = format!("{:?}", push); |
| 925 | |
| 926 | assert!(debug_str.contains("Push")); |
| 927 | assert!(debug_str.contains("origin")); |
| 928 | } |
| 929 | |
| 930 | // Remote Channel Tests |
| 931 |
nothing calls this directly
no test coverage detected