Rename test_keystoneclient*

Both of the test modules that perform functional (*cough* integration
*cough*) tests with python-keystoneclient are primarily focused on API
coverage for v2. All the analogous coverage for v3 is in the test_v3*
modules, so these two modules should be renamed so that they're easier
for new contributors to find.

Change-Id: Ib4264e5b9914177c48a63d239c1d05c743d62a26
This commit is contained in:
Dolph Mathews 2015-02-24 20:27:34 +00:00
parent ffe073d104
commit c0d56ecdf4
3 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@ this projects etc/ directory. ``test_backend_sql.py`` subclasses those tests,
changing the configuration by overriding with configuration files stored in
the tests directory aimed at enabling the SQL backend for the Identity module.
Likewise, ``test_keystoneclient.py`` takes advantage of the tests written
Likewise, ``test_v2_keystoneclient.py`` takes advantage of the tests written
against ``KeystoneClientTests`` to verify the same tests function through
different drivers and releases of the Keystone client.

View File

@ -18,10 +18,10 @@ from keystoneclient.contrib.ec2 import utils as ec2_utils
from keystoneclient import exceptions as client_exceptions
from keystone.tests import unit as tests
from keystone.tests.unit import test_keystoneclient
from keystone.tests.unit import test_v2_keystoneclient
class ClientDrivenSqlTestCase(test_keystoneclient.ClientDrivenTestCase):
class ClientDrivenSqlTestCase(test_v2_keystoneclient.ClientDrivenTestCase):
def config_files(self):
config_files = super(ClientDrivenSqlTestCase, self).config_files()
config_files.append(tests.dirs.tests_conf('backend_sql.conf'))