()
| 940 | |
| 941 | #[test] |
| 942 | fn test_push_debug() { |
| 943 | let push = Push::new().with_remote("origin"); |
| 944 | let debug_str = format!("{:?}", push); |
| 945 | |
| 946 | assert!(debug_str.contains("Push")); |
| 947 | assert!(debug_str.contains("origin")); |
| 948 | } |
| 949 | |
| 950 | // Remote Channel Tests |
| 951 |
nothing calls this directly
no test coverage detected