()
| 822 | /// Test with_to_view builder method. |
| 823 | #[test] |
| 824 | fn test_pull_with_to_view() { |
| 825 | let pull = Pull::new().with_to_view("feature"); |
| 826 | assert_eq!(pull.to_view, Some("feature".to_string())); |
| 827 | } |
| 828 | |
| 829 | /// Test with_from_view builder method. |
| 830 | #[test] |
nothing calls this directly
no test coverage detected