2014-04-18 10:17:30 +01:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
#I want to ensure that import ssl works on all platforms
|
|
|
|
class SSLTest(unittest.TestCase):
|
|
|
|
def test_ssl_import(self):
|
2014-04-24 14:31:24 +01:00
|
|
|
import ssl
|
2014-04-18 10:17:30 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|
|
|
|
|