mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-23 01:16:34 +03:00
67afd678b0
Most of the updates have been provided by James Henstridge. Closes ticket #195.
30 lines
620 B
Python
Executable File
30 lines
620 B
Python
Executable File
#!/usr/bin/env python
|
|
import dbapi20
|
|
import unittest
|
|
import psycopg2
|
|
import popen2
|
|
|
|
import tests
|
|
|
|
class Psycopg2TestCase(dbapi20.DatabaseAPI20Test):
|
|
driver = psycopg2
|
|
connect_args = ()
|
|
connect_kw_args = {'dsn': 'dbname=%s' % tests.dbname}
|
|
|
|
lower_func = 'lower' # For stored procedure test
|
|
|
|
def test_setoutputsize(self):
|
|
# psycopg2's setoutputsize() is a no-op
|
|
pass
|
|
|
|
def test_nextset(self):
|
|
# psycopg2 does not implement nextset()
|
|
pass
|
|
|
|
|
|
def test_suite():
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|