office-gobmx/pyuno/qa/pytests/testssl.py
Kenneth Koski 4f6e3108d9 Running pep8 on pyuno unit test files
Change-Id: I5d35305386e1f520d1030776e2b7bcf7620eda04
Reviewed-on: https://gerrit.libreoffice.org/22514
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2016-02-23 08:14:18 +00:00

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