()
| 829 | /// Test with_from_view builder method. |
| 830 | #[test] |
| 831 | fn test_pull_with_from_view() { |
| 832 | let pull = Pull::new().with_from_view("main"); |
| 833 | assert_eq!(pull.from_view, Some("main".to_string())); |
| 834 | } |
| 835 | |
| 836 | /// Test with_dry_run builder method. |
| 837 | #[test] |
nothing calls this directly
no test coverage detected