()
| 1033 | |
| 1034 | #[test] |
| 1035 | fn test_push_debug() { |
| 1036 | let push = Push::new().with_remote("origin"); |
| 1037 | let debug_str = format!("{:?}", push); |
| 1038 | |
| 1039 | assert!(debug_str.contains("Push")); |
| 1040 | assert!(debug_str.contains("origin")); |
| 1041 | } |
| 1042 | |
| 1043 | // View Resolution Tests |
| 1044 |
nothing calls this directly
no test coverage detected