Remove charm specific tests

This commit is contained in:
Gustavo Sanchez
2022-02-08 12:36:22 -04:00
parent 42cb820276
commit b2a987c263

View File

@@ -69,41 +69,3 @@ class CinderBackendTest(test_utils.OpenStackBaseTest):
'cinder@{}'.format(self.backend_name))
finally:
self.cinder_client.volumes.delete(vol_new)
class CinderSolidfireTest(CinderBackendTest):
"""Encapsulate cinder-solidfire tests."""
backend_name = 'cinder-solidfire'
expected_config_content = {
'cinder-solidfire': {
'volume_driver':
['cinder.volume.drivers.solidfire.SolidFireDriver'],
'san_ip': ['10.11.12.13'],
'san_login': ['username'],
'san_password': ['password']
}}
def test_create_volume(self):
"""Disabled while there is no hardware Solidfire appliance."""
pass
class CinderNimblestorageTest(CinderBackendTest):
"""Encapsulate cinder-nimblestorage tests."""
backend_name = 'cinder-nimblestorage'
expected_config_content = {
'cinder-nimblestorage': {
'volume_driver':
['cinder.volume.drivers.nimble.NimbleISCSIDriver'],
'san_ip': ['10.11.12.13'],
'san_login': ['username'],
'san_password': ['password'],
}}
def test_create_volume(self):
"""Disabled while there is no hardware Nimblestorage appliance."""
pass