summaryrefslogtreecommitdiffstats
path: root/tests/unit/rpc/test_kombu_ssl.py
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-01-22 19:54:57 -0500
committerMonty Taylor <mordred@inaugust.com>2013-01-24 16:26:43 +1100
commit827547a0b3da411441bf691ddbc94867001a3311 (patch)
tree17fb6b54fa0e00f8fa41d447f865e1ceb25b004a /tests/unit/rpc/test_kombu_ssl.py
parent1bc3ecf25d1b86dcb178d5f59b178bde94f5f667 (diff)
downloadoslo-827547a0b3da411441bf691ddbc94867001a3311.tar.gz
oslo-827547a0b3da411441bf691ddbc94867001a3311.tar.xz
oslo-827547a0b3da411441bf691ddbc94867001a3311.zip
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
Diffstat (limited to 'tests/unit/rpc/test_kombu_ssl.py')
-rw-r--r--tests/unit/rpc/test_kombu_ssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/rpc/test_kombu_ssl.py b/tests/unit/rpc/test_kombu_ssl.py
index 6d9265b..5507f91 100644
--- a/tests/unit/rpc/test_kombu_ssl.py
+++ b/tests/unit/rpc/test_kombu_ssl.py
@@ -23,7 +23,6 @@ import eventlet
eventlet.monkey_patch()
from openstack.common import cfg
-from openstack.common import testutils
from tests import utils as test_utils
@@ -48,6 +47,8 @@ class RpcKombuSslTestCase(test_utils.BaseTestCase):
def setUp(self):
super(RpcKombuSslTestCase, self).setUp()
+ if kombu is None:
+ self.skipTest("Test requires kombu")
self.config(kombu_ssl_keyfile=SSL_KEYFILE,
kombu_ssl_ca_certs=SSL_CA_CERT,
kombu_ssl_certfile=SSL_CERT,
@@ -55,7 +56,6 @@ class RpcKombuSslTestCase(test_utils.BaseTestCase):
rabbit_use_ssl=True,
fake_rabbit=True)
- @testutils.skip_if(kombu is None, "Test requires kombu")
def test_ssl_on_extended(self):
rpc = impl_kombu
conn = rpc.create_connection(FLAGS, True)