diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2009-03-30 21:54:41 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2009-03-30 21:54:41 (GMT) |
commit | eaaec27b6ed3e01675af083fa9c6c1687c1b3847 (patch) | |
tree | 4d0ab26d6b63e05b06f2517c67ec8de3c41ea832 /Lib/test/test_urlparse.py | |
parent | 7f6b4f86e305ec63441657c57f5f546d15114ca0 (diff) | |
download | cpython-eaaec27b6ed3e01675af083fa9c6c1687c1b3847.zip cpython-eaaec27b6ed3e01675af083fa9c6c1687c1b3847.tar.gz cpython-eaaec27b6ed3e01675af083fa9c6c1687c1b3847.tar.bz2 |
Fix for Issue4962, issue4675.
Diffstat (limited to 'Lib/test/test_urlparse.py')
-rw-r--r-- | Lib/test/test_urlparse.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py index 16bc133..05d4684 100644 --- a/Lib/test/test_urlparse.py +++ b/Lib/test/test_urlparse.py @@ -97,6 +97,9 @@ class UrlParseTestCase(unittest.TestCase): '', '', ''), ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf', '', '')), + ('nfs://server/path/to/file.txt', + ('nfs', 'server', '/path/to/file.txt', '', '', ''), + ('nfs', 'server', '/path/to/file.txt', '', '')), ('svn+ssh://svn.zope.org/repos/main/ZConfig/trunk/', ('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/', '', '', ''), |