Added missing test tags to compute tests

Change-Id: I13d3042da668970947bcf0f59ac7d5c738f7ef1c
This commit is contained in:
Daryl Walleck
2013-05-08 13:19:55 -05:00
parent 7c4534458f
commit 87f63ce260
11 changed files with 110 additions and 11 deletions

View File

@@ -14,11 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
from cafe.drivers.unittest.decorators import tags
from test_repo.compute.fixtures import ComputeFixture
class KeypairsTest(ComputeFixture):
@tags(type='positive', net='no')
def test_create_delete_keypair(self):
resp = self.keypairs_client.create_keypair('test3')
self.assertEqual(resp.status_code, 200)

View File

@@ -14,11 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
from cafe.drivers.unittest.decorators import tags
from test_repo.compute.fixtures import ComputeFixture
class SecurityGroupTest(ComputeFixture):
@tags(type='positive', net='no')
def test_create_delete_security_group(self):
resp = self.sec_groups_client.create_security_group(name='test',
description='test group')