mirror of
https://github.com/python/cpython.git
synced 2025-09-14 20:56:06 +00:00
Updated to pysqlite 2.4.1. Documentation additions will come later.
This commit is contained in:
parent
0e795e7d92
commit
1cc60ed214
17 changed files with 787 additions and 222 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue