()
| 792 | /// Test with_remote with URL. |
| 793 | #[test] |
| 794 | fn test_pull_with_remote_url() { |
| 795 | let pull = Pull::new().with_remote("https://example.com/repo"); |
| 796 | assert_eq!(pull.remote, "https://example.com/repo"); |
| 797 | } |
| 798 | |
| 799 | /// Test with_to_view builder method. |
| 800 | #[test] |
nothing calls this directly
no test coverage detected