test_cpu_pinning: Rename the test

The existing name for this test is rather undescriptive. Correct this
oversight.

Change-Id: If38538ea555bfe23cee5ca68e2dac17fd31265be
This commit is contained in:
Stephen Finucane 2016-01-18 10:05:21 +00:00 committed by Waldemar Znoinski
parent a0bd839e9e
commit 798d588485
1 changed files with 5 additions and 5 deletions

View File

@ -58,28 +58,28 @@ def get_core_mappings():
return core_mappings
class FlavorsAdminTestJSON(base.BaseV2ComputeAdminTest):
class CPUPolicyTest(base.BaseV2ComputeAdminTest):
"""
Tests Flavors API Create and Delete that require admin privileges
Tests CPU policy support.
"""
@classmethod
def skip_checks(cls):
super(FlavorsAdminTestJSON, cls).skip_checks()
super(CPUPolicyTest, cls).skip_checks()
if not test.is_extension_enabled('OS-FLV-EXT-DATA', 'compute'):
msg = "OS-FLV-EXT-DATA extension not enabled."
raise cls.skipException(msg)
@classmethod
def setup_clients(cls):
super(FlavorsAdminTestJSON, cls).setup_clients()
super(CPUPolicyTest, cls).setup_clients()
cls.flavors_client = cls.os_adm.flavors_client
cls.servers_client = cls.os_adm.servers_client
@classmethod
def resource_setup(cls):
super(FlavorsAdminTestJSON, cls).resource_setup()
super(CPUPolicyTest, cls).resource_setup()
cls.flavor_name_prefix = 'test_hw_'
cls.ram = 512