summaryrefslogtreecommitdiff
path: root/tests/test_containers.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polyconseil.fr>2012-04-13 17:52:08 +0200
committerRaphaël Barrois <raphael.barrois@polyconseil.fr>2012-04-15 10:06:39 +0200
commit03c92201e34cea40b494c4aefb324af100c181ea (patch)
tree1172dc59532035b9e7769321293a838de6a2a81a /tests/test_containers.py
parent3ba8ed544fa9e866f97efc41155ee296f022e9b4 (diff)
downloadfactory-boy-03c92201e34cea40b494c4aefb324af100c181ea.tar
factory-boy-03c92201e34cea40b494c4aefb324af100c181ea.tar.gz
Make tests compatible with python2.6 + unittest2
Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>
Diffstat (limited to 'tests/test_containers.py')
-rw-r--r--tests/test_containers.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_containers.py b/tests/test_containers.py
index a2a369d..55fe576 100644
--- a/tests/test_containers.py
+++ b/tests/test_containers.py
@@ -20,15 +20,12 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
-try:
- import unittest2 as unittest
-except ImportError:
- import unittest
-
from factory import base
from factory import containers
from factory import declarations
+from .compat import unittest
+
class LazyStubTestCase(unittest.TestCase):
def test_basic(self):
stub = containers.LazyStub({'one': 1, 'two': 2})