(self)
| 740 | self._test_cursor_helper(find, delete) |
| 741 | |
| 742 | def test_command_cursor_del(self): |
| 743 | def aggregate(coll, session): |
| 744 | return coll.aggregate([], session=session) |
| 745 | |
| 746 | def delete(cursor): |
| 747 | return cursor.__del__() |
| 748 | |
| 749 | self._test_cursor_helper(aggregate, delete) |
| 750 | |
| 751 | def test_cursor_exhaust(self): |
| 752 | def find(coll, session): |
nothing calls this directly
no test coverage detected