()
| 965 | /// Test Pull can be cloned. |
| 966 | #[test] |
| 967 | fn test_pull_clone() { |
| 968 | let original = Pull::new().with_remote("test").with_dry_run(true); |
| 969 | |
| 970 | let cloned = original.clone(); |
| 971 | |
| 972 | assert_eq!(cloned.remote.as_deref(), Some("test")); |
| 973 | assert!(cloned.dry_run); |
| 974 | } |
| 975 | |
| 976 | /// Test Pull has Debug implementation. |
| 977 | #[test] |
nothing calls this directly
no test coverage detected