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