(self)
| 755 | self._test_cursor_helper(find, lambda cursor: cursor.to_list()) |
| 756 | |
| 757 | def test_command_cursor_exhaust(self): |
| 758 | def aggregate(coll, session): |
| 759 | return coll.aggregate([], session=session) |
| 760 | |
| 761 | self._test_cursor_helper(aggregate, lambda cursor: cursor.to_list()) |
| 762 | |
| 763 | def test_cursor_limit_reached(self): |
| 764 | def find(coll, session): |
nothing calls this directly
no test coverage detected