summaryrefslogtreecommitdiff
path: root/Lib/test/test_urlparse.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-03-30 21:51:50 +0000
committerSenthil Kumaran <orsenthil@gmail.com>2009-03-30 21:51:50 +0000
commit5e95e763e1ba51b9bd4153aa016099e183b05434 (patch)
tree7014625e7ad52f519804a78ee29588ab04711981 /Lib/test/test_urlparse.py
parente7c9e092b3d339718b0794f6a593a5032b6b9fb5 (diff)
downloadcpython-git-5e95e763e1ba51b9bd4153aa016099e183b05434.tar.gz
Fix for bugs: Issue4675 and Issue4962.
Diffstat (limited to 'Lib/test/test_urlparse.py')
-rw-r--r--Lib/test/test_urlparse.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py
index fcd19894b9..e7a8317323 100644
--- a/Lib/test/test_urlparse.py
+++ b/Lib/test/test_urlparse.py
@@ -96,6 +96,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/',
'', '', ''),