(self)
| 725 | self._test_cursor_helper(find, lambda cursor: cursor.close()) |
| 726 | |
| 727 | def test_command_cursor_close(self): |
| 728 | def aggregate(coll, session): |
| 729 | return coll.aggregate([], session=session) |
| 730 | |
| 731 | self._test_cursor_helper(aggregate, lambda cursor: cursor.close()) |
| 732 | |
| 733 | def test_cursor_del(self): |
| 734 | def find(coll, session): |
nothing calls this directly
no test coverage detected