(self)
| 719 | self.assertIn(lsid, session_ids(self.client)) |
| 720 | |
| 721 | def test_cursor_close(self): |
| 722 | def find(coll, session): |
| 723 | return coll.find(session=session) |
| 724 | |
| 725 | self._test_cursor_helper(find, lambda cursor: cursor.close()) |
| 726 | |
| 727 | def test_command_cursor_close(self): |
| 728 | def aggregate(coll, session): |
nothing calls this directly
no test coverage detected