(self)
| 43 | coll_w0: Collection |
| 44 | |
| 45 | def setUp(self): |
| 46 | super().setUp() |
| 47 | self.coll = self.db.test |
| 48 | self.coll.drop() |
| 49 | self.coll_w0 = self.coll.with_options(write_concern=WriteConcern(w=0)) |
| 50 | |
| 51 | def assertEqualResponse(self, expected, actual): |
| 52 | """Compare response from bulk.execute() to expected response.""" |
no test coverage detected