From 827547a0b3da411441bf691ddbc94867001a3311 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 22 Jan 2013 19:54:57 -0500 Subject: Use testtools as test base class. On the path to testr migration, we need to replace the unittest base classes with testtools. Replace tearDown with addCleanup, addCleanup is more resilient than tearDown. The fixtures library has excellent support for managing and cleaning tempfiles. Use it. Replace skip_ with testtools.skipTest Part of blueprint grizzly-testtools. Change-Id: I45e11bbb1ff9b31f3278d3b016737dcb7850cd98 --- tests/unit/test_lockutils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/unit/test_lockutils.py') diff --git a/tests/unit/test_lockutils.py b/tests/unit/test_lockutils.py index 85dce05..dc8e413 100644 --- a/tests/unit/test_lockutils.py +++ b/tests/unit/test_lockutils.py @@ -21,14 +21,13 @@ import select import shutil import tempfile import time -import unittest +import testtools import eventlet from eventlet import greenpool from eventlet import greenthread from openstack.common import lockutils -from openstack.common import testutils from tests import utils as test_utils -- cgit