()
| 847 | |
| 848 | #[test] |
| 849 | fn test_push_with_dry_run() { |
| 850 | let push = Push::new().with_dry_run(true); |
| 851 | assert!(push.dry_run); |
| 852 | |
| 853 | let push2 = push.with_dry_run(false); |
| 854 | assert!(!push2.dry_run); |
| 855 | } |
| 856 | |
| 857 | #[test] |
| 858 | fn test_push_with_force() { |
nothing calls this directly
no test coverage detected