()
| 926 | |
| 927 | #[test] |
| 928 | fn test_push_clone() { |
| 929 | let push = Push::new().with_remote("test").with_dry_run(true); |
| 930 | let cloned = push.clone(); |
| 931 | |
| 932 | assert_eq!(push.remote, cloned.remote); |
| 933 | assert_eq!(push.dry_run, cloned.dry_run); |
| 934 | } |
| 935 | |
| 936 | #[test] |
| 937 | fn test_push_debug() { |
nothing calls this directly
no test coverage detected