blob: 6ec9875fb84f543faef9501453eb544586fd33ff (
plain)
1
2
3
4
5
6
7
8
9
10
|
import unittest
# I want to ensure that import ssl works on all platforms
class SSLTest(unittest.TestCase):
def test_ssl_import(self):
import ssl
if __name__ == '__main__':
unittest.main()
|