add test for quota update when quota no exist
Closes-Bug: #1808940 Change-Id: Ib4ad6138edc49b334a7a2da1c7864d874bf9a0eb
This commit is contained in:
parent
b23eec0419
commit
d2c2cf68b8
@ -104,6 +104,14 @@ class DbQuotaTestCase(base.DbTestCase):
|
||||
{'hard_limit': new_limit})
|
||||
self.assertEqual(new_limit, res.hard_limit)
|
||||
|
||||
def test_quota_update_not_exist(self):
|
||||
self.assertRaises(exception.QuotaNotFound,
|
||||
self.dbapi.quota_update,
|
||||
self.context,
|
||||
'123',
|
||||
'fake',
|
||||
{'hard_limit': 100})
|
||||
|
||||
def test_quota_update_with_invalid_parameter_value(self):
|
||||
quota = utils.create_test_quota()
|
||||
self.assertRaises(exception.InvalidParameterValue,
|
||||
|
Loading…
x
Reference in New Issue
Block a user