43
51
self.failUnlessEqual(self.getCurrentIsolation(), 'read committed')
49
53
def test_autocommit(self):
51
55
# There is no actual 'autocommit' mode in PostgreSQL. psycopg
52
56
# implements this feature by using read committed isolation and
53
57
# issuing commit() statements after every query.