Add explicit test for hg+file

This was previously failing on the master branch.
This commit is contained in:
Chris Hunt 2019-09-22 11:06:07 -04:00
parent 4022ac277f
commit 658425a555
1 changed files with 1 additions and 0 deletions

View File

@ -131,6 +131,7 @@ class TestLink:
@pytest.mark.parametrize('url, expected', [
('git+https://github.com/org/repo', True),
('bzr+http://bzr.myproject.org/MyProject/trunk/#egg=MyProject', True),
('hg+file://hg.company.com/repo', True),
('https://example.com/some.whl', False),
('file://home/foo/some.whl', False),
])