projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f44237
)
SF feature #618024, urlparse fails on imap://
author
Neal Norwitz
<nnorwitz@gmail.com>
Mon, 6 Jan 2003 06:58:31 +0000
(06:58 +0000)
committer
Neal Norwitz
<nnorwitz@gmail.com>
Mon, 6 Jan 2003 06:58:31 +0000
(06:58 +0000)
Lib/test/test_urlparse.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_urlparse.py
b/Lib/test/test_urlparse.py
index 7d7f4588f6c96b7bc6c4226913a8d37353b19617..a9d55d3737d93d6b7ddd7c05d027fc01840b3778 100644
(file)
--- a/
Lib/test/test_urlparse.py
+++ b/
Lib/test/test_urlparse.py
@@
-25,6
+25,9
@@
class UrlParseTestCase(unittest.TestCase):
('file:///tmp/junk.txt',
('file', '', '/tmp/junk.txt', '', '', ''),
('file', '', '/tmp/junk.txt', '', '')),
+ ('imap://mail.python.org/mbox1',
+ ('imap', 'mail.python.org', '/mbox1', '', '', ''),
+ ('imap', 'mail.python.org', '/mbox1', '', '')),
]:
result = urlparse.urlparse(url)
self.assertEqual(result, parsed)