()
| 930 | /// Test with_to_view builder method. |
| 931 | #[test] |
| 932 | fn test_pull_with_to_view() { |
| 933 | let pull = Pull::new().with_to_view("feature"); |
| 934 | assert_eq!(pull.to_view, Some("feature".to_string())); |
| 935 | } |
| 936 | |
| 937 | /// Test with_from_view builder method. |
| 938 | #[test] |
nothing calls this directly
no test coverage detected