()
| 980 | |
| 981 | #[test] |
| 982 | fn test_push_with_dry_run() { |
| 983 | let push = Push::new().with_dry_run(true); |
| 984 | assert!(push.dry_run); |
| 985 | |
| 986 | let push = Push::new().with_dry_run(false); |
| 987 | assert!(!push.dry_run); |
| 988 | } |
| 989 | |
| 990 | #[test] |
| 991 | fn test_push_with_force() { |
nothing calls this directly
no test coverage detected