4f6e3108d9
Change-Id: I5d35305386e1f520d1030776e2b7bcf7620eda04 Reviewed-on: https://gerrit.libreoffice.org/22514 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
10 lines
208 B
Python
10 lines
208 B
Python
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()
|