()
| 890 | /// Test with_to_view builder method. |
| 891 | #[test] |
| 892 | fn test_pull_with_to_view() { |
| 893 | let pull = Pull::new().with_to_view("feature"); |
| 894 | assert_eq!(pull.to_view, Some("feature".to_string())); |
| 895 | } |
| 896 | |
| 897 | /// Test with_from_view builder method. |
| 898 | #[test] |
nothing calls this directly
no test coverage detected