diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-12-30 02:13:52 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-12-30 02:13:52 +0000 |
| commit | f020a9ffd6d5602d18c899e7707baaa620ffdd54 (patch) | |
| tree | f4b2503238077d49d36cd35e12729f057cee5b7c /openstackclient/tests/functional/common | |
| parent | 17a249c5ddc22403486f32575e91da7db10ff8e2 (diff) | |
| parent | 13c8a1c7aaa099c22279043d23c7a5a9424763a8 (diff) | |
| download | python-openstackclient-f020a9ffd6d5602d18c899e7707baaa620ffdd54.tar.gz | |
Merge "Revert "WIP: Skip broken functional tests...""
Diffstat (limited to 'openstackclient/tests/functional/common')
| -rw-r--r-- | openstackclient/tests/functional/common/test_quota.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/openstackclient/tests/functional/common/test_quota.py b/openstackclient/tests/functional/common/test_quota.py index fbb8e563..c1de9aa9 100644 --- a/openstackclient/tests/functional/common/test_quota.py +++ b/openstackclient/tests/functional/common/test_quota.py @@ -10,8 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import testtools - from openstackclient.tests.functional import base @@ -27,7 +25,6 @@ class QuotaTests(base.TestCase): cls.PROJECT_NAME =\ cls.get_openstack_configuration_value('auth.project_name') - @testtools.skip('broken SDK testing') def test_quota_set(self): self.openstack('quota set --instances 11 --volumes 11 --networks 11 ' + self.PROJECT_NAME) @@ -35,19 +32,16 @@ class QuotaTests(base.TestCase): raw_output = self.openstack('quota show ' + self.PROJECT_NAME + opts) self.assertEqual("11\n11\n11\n", raw_output) - @testtools.skip('broken SDK testing') def test_quota_show(self): raw_output = self.openstack('quota show ' + self.PROJECT_NAME) for expected_field in self.EXPECTED_FIELDS: self.assertIn(expected_field, raw_output) - @testtools.skip('broken SDK testing') def test_quota_show_default_project(self): raw_output = self.openstack('quota show') for expected_field in self.EXPECTED_FIELDS: self.assertIn(expected_field, raw_output) - @testtools.skip('broken SDK testing') def test_quota_show_with_default_option(self): raw_output = self.openstack('quota show --default') for expected_field in self.EXPECTED_FIELDS: |
