fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / pyuno / qa / pytests / testssl.py
blobf0a0a37fc88b8eedae53f5bb8cbf18e14467c033
1 import unittest
3 #I want to ensure that import ssl works on all platforms
4 class SSLTest(unittest.TestCase):
5 def test_ssl_import(self):
6 import ssl
8 if __name__ == '__main__':
9 unittest.main()