summaryrefslogtreecommitdiff
path: root/tests/test_bio_ssl.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2015-10-13 14:51:24 +0200
committerMatěj Cepl <mcepl@cepl.eu>2015-10-13 15:23:06 +0200
commita4e8e60f95ce6b2c1e4bc5d804d6521392bfa66b (patch)
tree5bb242ba3646b2df8322c2555975c4244ca4588e /tests/test_bio_ssl.py
parent1b5f8bbe04280558dfe577a2df203eaf0600c473 (diff)
downloadm2crypto-a4e8e60f95ce6b2c1e4bc5d804d6521392bfa66b.tar.gz
Switch unit testing to have at least 2.7 unittest API available.
Fixes #48
Diffstat (limited to 'tests/test_bio_ssl.py')
-rw-r--r--tests/test_bio_ssl.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_bio_ssl.py b/tests/test_bio_ssl.py
index 0dee9da..229475a 100644
--- a/tests/test_bio_ssl.py
+++ b/tests/test_bio_ssl.py
@@ -3,7 +3,11 @@
Copyright (c) 1999-2002 Ng Pheng Siong. All rights reserved."""
-import unittest, threading, sys, socket
+import threading, sys, socket
+try:
+ import unittest2 as unittest
+except ImportError:
+ import unittest
from M2Crypto import BIO
from M2Crypto import SSL