#17471 - Improve urllib2 test coverage. Patch contributed by Daniel Wozniak

This commit is contained in:
Senthil Kumaran 2013-03-19 13:43:42 -07:00
parent f5d7cc239e
commit 843fae9312
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ class TrivialTests(unittest.TestCase):
for string, list in tests:
self.assertEqual(urllib.request.parse_http_list(string), list)
def test_URLError_reasonstr(self):
err = urllib.error.URLError('reason')
self.assertIn(err.reason, str(err))
def test_request_headers_dict():
"""