Commit d7caf08f authored by Denis Bilenko's avatar Denis Bilenko

add a new test case for ssl by Cesar Alaniz

parent c0dc1c6e
#!/usr/bin/python
from gevent import monkey; monkey.patch_all()
import unittest
import httplib
class AmazonHTTPSTests(unittest.TestCase):
def test_amazon_response(self):
conn = httplib.HTTPConnection('sdb.amazonaws.com')
conn.debuglevel = 1
conn.request('GET', '/')
resp = conn.getresponse()
if __name__ == "__main__":
unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment