()
| 897 | /// Test with_from_view builder method. |
| 898 | #[test] |
| 899 | fn test_pull_with_from_view() { |
| 900 | let pull = Pull::new().with_from_view("main"); |
| 901 | assert_eq!(pull.from_view, Some("main".to_string())); |
| 902 | } |
| 903 | |
| 904 | /// Test with_dry_run builder method. |
| 905 | #[test] |
nothing calls this directly
no test coverage detected