summaryrefslogtreecommitdiff
path: root/pyuno/qa/pytests/testssl.py
blob: f0a0a37fc88b8eedae53f5bb8cbf18e14467c033 (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()