()
| 874 | /// Test Pull can be cloned. |
| 875 | #[test] |
| 876 | fn test_pull_clone() { |
| 877 | let original = Pull::new().with_remote("test").with_dry_run(true); |
| 878 | |
| 879 | let cloned = original.clone(); |
| 880 | |
| 881 | assert_eq!(cloned.remote, "test"); |
| 882 | assert!(cloned.dry_run); |
| 883 | } |
| 884 | |
| 885 | /// Test Pull has Debug implementation. |
| 886 | #[test] |
nothing calls this directly
no test coverage detected