MCPcopy Index your code
hub / github.com/davispuh/MySQL-for-Python-3 / test_setinputsizes

Method test_setinputsizes

tests/dbapi20.py:767–774  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

765 con.close()
766
767 def test_setinputsizes(self):
768 con = self._connect()
769 try:
770 cur = con.cursor()
771 cur.setinputsizes( (25,) )
772 self._paraminsert(cur) # Make sure cursor still works
773 finally:
774 con.close()
775
776 def test_setoutputsize_basic(self):
777 # Basic test is to make sure setoutputsize doesn't blow up

Callers

nothing calls this directly

Calls 5

_connectMethod · 0.95
_paraminsertMethod · 0.95
cursorMethod · 0.80
setinputsizesMethod · 0.80
closeMethod · 0.80

Tested by

no test coverage detected