()
| 1035 | |
| 1036 | #[test] |
| 1037 | fn test_push_clone() { |
| 1038 | let push = Push::new().with_remote("origin").with_dry_run(true); |
| 1039 | let cloned = push.clone(); |
| 1040 | |
| 1041 | assert_eq!(cloned.remote, push.remote); |
| 1042 | assert_eq!(cloned.dry_run, push.dry_run); |
| 1043 | } |
| 1044 | |
| 1045 | #[test] |
| 1046 | fn test_push_debug() { |
nothing calls this directly
no test coverage detected