(self)
| 749 | self._test_cursor_helper(aggregate, delete) |
| 750 | |
| 751 | def test_cursor_exhaust(self): |
| 752 | def find(coll, session): |
| 753 | return coll.find(session=session) |
| 754 | |
| 755 | self._test_cursor_helper(find, lambda cursor: cursor.to_list()) |
| 756 | |
| 757 | def test_command_cursor_exhaust(self): |
| 758 | def aggregate(coll, session): |
nothing calls this directly
no test coverage detected