Updated to pysqlite 2.4.1. Documentation additions will come later.

This commit is contained in:
Gerhard Häring 2008-02-29 22:08:41 +00:00
parent 0e795e7d92
commit 1cc60ed214
17 changed files with 787 additions and 222 deletions

View file

@ -4,13 +4,13 @@ try:
import _sqlite3
except ImportError:
raise TestSkipped('no sqlite available')
from sqlite3.test import (dbapi, types, userfunctions,
from sqlite3.test import (dbapi, types, userfunctions, py25tests,
factory, transactions, hooks, regression)
def test_main():
run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
factory.suite(), transactions.suite(), hooks.suite(),
regression.suite())
py25tests.suite(), factory.suite(), transactions.suite(),
hooks.suite(), regression.suite())
if __name__ == "__main__":
test_main()