()
| 799 | /// Test with_to_view builder method. |
| 800 | #[test] |
| 801 | fn test_pull_with_to_view() { |
| 802 | let pull = Pull::new().with_to_view("feature"); |
| 803 | assert_eq!(pull.to_view, Some("feature".to_string())); |
| 804 | } |
| 805 | |
| 806 | /// Test with_from_view builder method. |
| 807 | #[test] |
nothing calls this directly
no test coverage detected