(self, item_dict)
| 10 | self.collection.create_index([('nid', ASCENDING)]) |
| 11 | |
| 12 | def insert(self, item_dict): |
| 13 | self.collection.insert_one(item_dict) |
| 14 | |
| 15 | def delete_all(self, query_dict): |
| 16 | self.collection.delete_many(query_dict) |
no outgoing calls
no test coverage detected