compose/tests/__init__.py

12 lines
198 B
Python
Raw Normal View History

2014-01-06 12:22:46 +01:00
import sys
if sys.version_info >= (2, 7):
import unittest # NOQA
2014-01-06 12:22:46 +01:00
else:
import unittest2 as unittest # NOQA
try:
from unittest import mock
except ImportError:
import mock # NOQA