1010# License for the specific language governing permissions and limitations
1111# under the License.
1212
13- import testtools
14-
1513from openstackclient .tests .functional import base
1614
1715
@@ -27,27 +25,23 @@ def setUpClass(cls):
2725 cls .PROJECT_NAME = \
2826 cls .get_openstack_configuration_value ('auth.project_name' )
2927
30- @testtools .skip ('broken SDK testing' )
3128 def test_quota_set (self ):
3229 self .openstack ('quota set --instances 11 --volumes 11 --networks 11 ' +
3330 self .PROJECT_NAME )
3431 opts = self .get_opts (self .EXPECTED_FIELDS )
3532 raw_output = self .openstack ('quota show ' + self .PROJECT_NAME + opts )
3633 self .assertEqual ("11\n 11\n 11\n " , raw_output )
3734
38- @testtools .skip ('broken SDK testing' )
3935 def test_quota_show (self ):
4036 raw_output = self .openstack ('quota show ' + self .PROJECT_NAME )
4137 for expected_field in self .EXPECTED_FIELDS :
4238 self .assertIn (expected_field , raw_output )
4339
44- @testtools .skip ('broken SDK testing' )
4540 def test_quota_show_default_project (self ):
4641 raw_output = self .openstack ('quota show' )
4742 for expected_field in self .EXPECTED_FIELDS :
4843 self .assertIn (expected_field , raw_output )
4944
50- @testtools .skip ('broken SDK testing' )
5145 def test_quota_show_with_default_option (self ):
5246 raw_output = self .openstack ('quota show --default' )
5347 for expected_field in self .EXPECTED_FIELDS :
0 commit comments