()
| 806 | /// Test with_from_view builder method. |
| 807 | #[test] |
| 808 | fn test_pull_with_from_view() { |
| 809 | let pull = Pull::new().with_from_view("main"); |
| 810 | assert_eq!(pull.from_view, Some("main".to_string())); |
| 811 | } |
| 812 | |
| 813 | /// Test with_dry_run builder method. |
| 814 | #[test] |
nothing calls this directly
no test coverage detected