repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git]
/
pyuno
/
qa
/
pytests
/
testssl.py
blob
f0a0a37fc88b8eedae53f5bb8cbf18e14467c033
1
import
unittest
2
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
7
8
if
__name__
==
'__main__'
:
9
unittest
.
main
()
10