summaryrefslogtreecommitdiff
path: root/tests/test_bio_membuf.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_membuf.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_membuf.py')
-rw-r--r--tests/test_bio_membuf.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_bio_membuf.py b/tests/test_bio_membuf.py
index 7d719fd..76edfa0 100644
--- a/tests/test_bio_membuf.py
+++ b/tests/test_bio_membuf.py
@@ -4,7 +4,11 @@
Copyright (c) 2000 Ng Pheng Siong. All rights reserved."""
-import unittest
+try:
+ import unittest2 as unittest
+except ImportError:
+ import unittest
+
import M2Crypto
from M2Crypto.BIO import MemoryBuffer