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
Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git]
/
pyuno
/
qa
/
pytests
/
testssl.py
blob
6ec9875fb84f543faef9501453eb544586fd33ff
1
import
unittest
2
3
4
# I want to ensure that import ssl works on all platforms
5
class
SSLTest
(
unittest
.
TestCase
):
6
def
test_ssl_import
(
self
):
7
import
ssl
8
9
if
__name__
==
'__main__'
:
10
unittest
.
main
()