remove unused methods from integrated_helpers test class

These methods predate the OSAPIFixture, and are not used any more.

Change-Id: If72e90229cdabdd51d7e7e28aa36f1f2dedceee0
This commit is contained in:
Sean Dague 2015-12-17 15:55:30 -05:00
parent 501a05edb1
commit e7c99f47b8
1 changed files with 0 additions and 12 deletions

View File

@ -26,10 +26,8 @@ from oslo_log import log as logging
from nova import crypto
import nova.image.glance
from nova import service
from nova import test
from nova.tests import fixtures as nova_fixtures
from nova.tests.functional.api import client
from nova.tests.unit import cast_as_call
from nova.tests.unit import fake_crypto
import nova.tests.unit.image.fake
@ -116,16 +114,6 @@ class _IntegratedTestBase(test.TestCase):
self.network = self.start_service('network')
self.scheduler = self._setup_scheduler_service()
def _get_test_client(self):
return client.TestOpenStackClient('fake', 'fake', self.auth_url)
def _start_api_service(self):
self.osapi = service.WSGIService("osapi_compute")
self.osapi.start()
self.auth_url = 'http://%(host)s:%(port)s/%(api_version)s' % ({
'host': self.osapi.host, 'port': self.osapi.port,
'api_version': self.api_major_version})
def _get_flags(self):
"""Allow subclass to modify global config before we start services."""
# NOTE(sdague): _get_flags is used by about 13 tests that