()
| 1024 | |
| 1025 | #[test] |
| 1026 | fn test_push_clone() { |
| 1027 | let push = Push::new().with_remote("origin").with_dry_run(true); |
| 1028 | let cloned = push.clone(); |
| 1029 | |
| 1030 | assert_eq!(cloned.remote, push.remote); |
| 1031 | assert_eq!(cloned.dry_run, push.dry_run); |
| 1032 | } |
| 1033 | |
| 1034 | #[test] |
| 1035 | fn test_push_debug() { |
nothing calls this directly
no test coverage detected