mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Updated the sqlite3 module to the external pysqlite 2.2.2 version.
This commit is contained in:
parent
5ef9d9fdb9
commit
3e99c0ad64
22 changed files with 310 additions and 313 deletions
|
@ -6,11 +6,12 @@ try:
|
|||
except ImportError:
|
||||
raise TestSkipped('no sqlite available')
|
||||
from sqlite3.test import (dbapi, types, userfunctions,
|
||||
factory, transactions)
|
||||
factory, transactions, hooks, regression)
|
||||
|
||||
def test_main():
|
||||
run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
|
||||
factory.suite(), transactions.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