commit | 1a7609f7ede6ed44853bfee2a80dda98184d29b5 | [log] [tgz] |
---|---|---|
author | Joe Gregorio <joe@bitworking.org> | Thu Jul 16 10:59:44 2009 -0400 |
committer | Joe Gregorio <joe@bitworking.org> | Thu Jul 16 10:59:44 2009 -0400 |
tree | 5a83c326055bc05159d2cc429c616e42cacc45db | |
parent | 00a352e01258751b1fceaf8a1c802c20c0d60996 [diff] [blame] |
Fix bug #57
diff --git a/httplib2test.py b/httplib2test.py index cc0e578..b812a53 100755 --- a/httplib2test.py +++ b/httplib2test.py
@@ -611,6 +611,10 @@ self.assertTrue(content.startswith("Request Timeout")) + def testHTTPSInitTimeout(self): + c = httplib2.HTTPSConnectionWithTimeout('localhost', 80, timeout=47) + self.assertEqual(47, c.timeout) + def testGetDeflate(self): # Test that we support deflate compression uri = urlparse.urljoin(base, "deflate/deflated.asis")