diff --git a/mogan/tests/unit/db/test_quotas.py b/mogan/tests/unit/db/test_quotas.py index 1f06f587..26ec59d8 100644 --- a/mogan/tests/unit/db/test_quotas.py +++ b/mogan/tests/unit/db/test_quotas.py @@ -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,