Commit e29593a2 authored by Denis Bilenko's avatar Denis Bilenko

test__socket_ssl.py: exit silently if there's not socket.ssl

parent d127f3bc
#!/usr/bin/python
from gevent import monkey; monkey.patch_all()
import sys
import unittest
import httplib
import socket
if not hasattr(socket, 'ssl'):
sys.exit(0)
class AmazonHTTPSTests(unittest.TestCase):
def test_amazon_response(self):
......
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