()
| 902 | |
| 903 | #[test] |
| 904 | fn test_push_clone() { |
| 905 | let push = Push::new().with_remote("test").with_dry_run(true); |
| 906 | let cloned = push.clone(); |
| 907 | |
| 908 | assert_eq!(push.remote, cloned.remote); |
| 909 | assert_eq!(push.dry_run, cloned.dry_run); |
| 910 | } |
| 911 | |
| 912 | #[test] |
| 913 | fn test_push_debug() { |
nothing calls this directly
no test coverage detected