Exemplo n.º 1
0
 def destroy(self):
     with self.obj_as_admin():
         db.operation_log_destroy(self._context, self.id)
Exemplo n.º 2
0
 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'])
Exemplo n.º 3
0
 def destroy(self):
     with self.obj_as_admin():
         db.operation_log_destroy(self._context, self.id)
Exemplo n.º 4
0
 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'])