John Bresnahan 982c025c90 Adding a plug-in module for nova compute
This new python package will allow a nova compute deployment to install
a staccato download plugin module.  This will allow nova compute to
use staccato for downloads.

Change-Id: I35257f37c8d92ad96298c10ce1be15b7f53ffaef
blueprint: staccato-plugin-for-nova
2013-08-16 14:45:58 -10:00

20 lines
373 B
Python

from oslo.config import cfg
import testtools
CONF = cfg.CONF
class BaseTest(testtools.TestCase):
def setUp(self):
super(BaseTest, self).setUp()
def tearDown(self):
super(BaseTest, self).tearDown()
def config(self, **kw):
group = kw.pop('group', None)
for k, v in kw.iteritems():
CONF.set_override(k, v, group)