mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Merged revisions 81130 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81130 | senthil.kumaran | 2010-05-13 08:55:21 +0530 (Thu, 13 May 2010) | 3 lines Fix Issue8657 - adding git and git+ssh as know schemes. ........
This commit is contained in:
parent
91f021fb70
commit
ead169d311
2 changed files with 7 additions and 2 deletions
|
@ -104,7 +104,12 @@ class UrlParseTestCase(unittest.TestCase):
|
|||
('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/',
|
||||
'', '', ''),
|
||||
('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/',
|
||||
'', ''))
|
||||
'', '')),
|
||||
('git+ssh://git@github.com/user/project.git',
|
||||
('git+ssh', 'git@github.com','/user/project.git',
|
||||
'','',''),
|
||||
('git+ssh', 'git@github.com','/user/project.git',
|
||||
'', ''))
|
||||
]
|
||||
for url, parsed, split in testcases:
|
||||
self.checkRoundtrips(url, parsed, split)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue