Files
loongoffice/pyuno/qa/pytests/ssl.py
David Tardon d5556631e9 this test apparently does not need pyuno
Change-Id: I6000620bec95f32ec357a3e56e14f3255da978af
2014-04-18 22:21:10 +02:00

11 lines
207 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()