Commit 817976bf authored by Denis Bilenko's avatar Denis Bilenko

add a very basic test for httplib

parent 3aee9548
import unittest
from gevent import httplib
class Test(unittest.TestCase):
def test(self):
conn = httplib.HTTPConnection('www.google.com')
conn.request('GET', '/')
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