(self)
| 787 | con.close() |
| 788 | |
| 789 | def test_setoutputsize_basic(self): |
| 790 | # Basic test is to make sure setoutputsize doesn't blow up |
| 791 | con = self._connect() |
| 792 | try: |
| 793 | cur = con.cursor() |
| 794 | cur.setoutputsize(1000) |
| 795 | cur.setoutputsize(2000,0) |
| 796 | self._paraminsert(cur) # Make sure the cursor still works |
| 797 | finally: |
| 798 | con.close() |
| 799 | |
| 800 | def test_setoutputsize(self): |
| 801 | # Real test for setoutputsize is driver dependent |
nothing calls this directly
no test coverage detected