Remote git URLs are detected; local paths are not.
(path: str, expected: bool)
| 82 | ], |
| 83 | ) |
| 84 | def test_is_git_url(path: str, expected: bool) -> None: |
| 85 | """Remote git URLs are detected; local paths are not.""" |
| 86 | assert is_git_url(path) is expected |
| 87 | |
| 88 | |
| 89 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected