()
| 1044 | |
| 1045 | #[test] |
| 1046 | fn test_push_debug() { |
| 1047 | let push = Push::new().with_remote("origin"); |
| 1048 | let debug_str = format!("{:?}", push); |
| 1049 | |
| 1050 | assert!(debug_str.contains("Push")); |
| 1051 | assert!(debug_str.contains("origin")); |
| 1052 | } |
| 1053 | |
| 1054 | // View Resolution Tests |
| 1055 |
nothing calls this directly
no test coverage detected