mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 11:36:37 +03:00
ade1b2cc7b
Dropped cyclic import from modules to tests: they were only working because a second copy of the package was found in the project dir. Use relative import so that 2to3 can do a good conversion.
40 lines
922 B
Python
Executable File
40 lines
922 B
Python
Executable File
#!/usr/bin/env python
|
|
import dbapi20
|
|
import dbapi20_tpc
|
|
from test_connection import skip_if_tpc_disabled
|
|
from testutils import unittest, decorate_all_tests
|
|
import psycopg2
|
|
|
|
from testconfig import dsn
|
|
|
|
class Psycopg2Tests(dbapi20.DatabaseAPI20Test):
|
|
driver = psycopg2
|
|
connect_args = ()
|
|
connect_kw_args = {'dsn': dsn}
|
|
|
|
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
|
|
|
|
|
|
class Psycopg2TPCTests(dbapi20_tpc.TwoPhaseCommitTests, unittest.TestCase):
|
|
driver = psycopg2
|
|
|
|
def connect(self):
|
|
return psycopg2.connect(dsn=dsn)
|
|
|
|
decorate_all_tests(Psycopg2TPCTests, skip_if_tpc_disabled)
|
|
|
|
|
|
def test_suite():
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|