()
| 969 | |
| 970 | #[test] |
| 971 | fn test_push_with_dry_run() { |
| 972 | let push = Push::new().with_dry_run(true); |
| 973 | assert!(push.dry_run); |
| 974 | |
| 975 | let push = Push::new().with_dry_run(false); |
| 976 | assert!(!push.dry_run); |
| 977 | } |
| 978 | |
| 979 | #[test] |
| 980 | fn test_push_with_force() { |
nothing calls this directly
no test coverage detected