()
| 897 | /// Test Pull can be cloned. |
| 898 | #[test] |
| 899 | fn test_pull_clone() { |
| 900 | let original = Pull::new().with_remote("test").with_dry_run(true); |
| 901 | |
| 902 | let cloned = original.clone(); |
| 903 | |
| 904 | assert_eq!(cloned.remote.as_deref(), Some("test")); |
| 905 | assert!(cloned.dry_run); |
| 906 | } |
| 907 | |
| 908 | /// Test Pull has Debug implementation. |
| 909 | #[test] |
nothing calls this directly
no test coverage detected