summaryrefslogtreecommitdiff
path: root/pyuno/qa/pytests
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-18 10:17:30 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-18 10:19:11 +0100
commitec95e6a17c591bff6c0582c304c1beeb1efe141f (patch)
tree5a9d27125ab5e70a6507c43a9395f03cf026f3ad /pyuno/qa/pytests
parenta7f68538f5f27093b8165e2e8fce3f7fade3aaf9 (diff)
add an import ssl test
Change-Id: Ia2dad214e6a224c979a8664bfded7d2caffb221a
Diffstat (limited to 'pyuno/qa/pytests')
-rw-r--r--pyuno/qa/pytests/ssl.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/pyuno/qa/pytests/ssl.py b/pyuno/qa/pytests/ssl.py
new file mode 100644
index 000000000000..a67f5323b700
--- /dev/null
+++ b/pyuno/qa/pytests/ssl.py
@@ -0,0 +1,12 @@
+import unittest
+
+from org.libreoffice.unotest import pyuno
+
+#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()
+