Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / pyuno / qa / pytests / testssl.py
blob6ec9875fb84f543faef9501453eb544586fd33ff
1 import unittest
4 # I want to ensure that import ssl works on all platforms
5 class SSLTest(unittest.TestCase):
6 def test_ssl_import(self):
7 import ssl
9 if __name__ == '__main__':
10 unittest.main()