We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09555f0 commit 7730131Copy full SHA for 7730131
1 file changed
tests/parse/test_git.py
@@ -34,6 +34,17 @@ class GitURLFixture(typing.NamedTuple):
34
path="vcs-python/libvcs",
35
),
36
37
+ GitURLFixture(
38
+ url="https://github.com:7999/vcs-python/libvcs",
39
+ is_valid=True,
40
+ git_location=GitURL(
41
42
+ scheme="https",
43
+ hostname="github.com",
44
+ port=7999,
45
+ path="vcs-python/libvcs",
46
+ ),
47
48
#
49
# SCP-style URLs:
50
# e.g. 'git@example.com:foo/bar.git'
0 commit comments