def destroy(self): with self.obj_as_admin(): db.operation_log_destroy(self._context, self.id)
def test_operation_log_destroy(self): operation_log = db.operation_log_create(self.ctxt, self.fake_operation_log) db.operation_log_destroy(self.ctxt, operation_log['id']) self.assertRaises(exception.OperationLogNotFound, db.operation_log_get, self.ctxt, operation_log['id'])