insert with no error checking
(self, docs)
| 424 | return trial |
| 425 | |
| 426 | def _insert_trial_docs(self, docs): |
| 427 | """insert with no error checking""" |
| 428 | rval = [doc["tid"] for doc in docs] |
| 429 | self._dynamic_trials.extend(docs) |
| 430 | return rval |
| 431 | |
| 432 | def insert_trial_doc(self, doc): |
| 433 | """insert trial after error checking |
no outgoing calls
no test coverage detected