summaryrefslogtreecommitdiff
path: root/pyuno/qa/pytests/ssl.py
blob: a67f5323b7003f9166d7072fc025567143609e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import unittest

from org.libreoffice.unotest import pyuno

#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()