test db2 driver code

currently, db2 driver code is not being tested. the scenario tests
are essentially calling the mongodb driver code twice.

Change-Id: I4987bb974e4f8ad6584e7939c14e59f243562fef
Closes-Bug: #1371396
This commit is contained in:
gordon chung 2014-09-19 00:53:23 -04:00
parent 7b89798be3
commit 44594e8693

View File

@ -186,5 +186,7 @@ class MixinTestsWithBackendScenarios(object):
('hbase', {'db_url': os.environ.get('CEILOMETER_TEST_HBASE_URL',
'hbase://__test__')}),
('db2', {'db_url': (os.environ.get('CEILOMETER_TEST_DB2_URL') or
os.environ.get('CEILOMETER_TEST_MONGODB_URL'))})
os.environ.get('CEILOMETER_TEST_MONGODB_URL',
'').replace('mongodb://',
'db2://'))})
]