summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sqlite.py
diff options
context:
space:
mode:
authorGerhard Häring <gh@ghaering.de>2006-04-23 15:24:26 (GMT)
committerGerhard Häring <gh@ghaering.de>2006-04-23 15:24:26 (GMT)
commit3e99c0ad649de0393d9a8af17f34d9d1f55f4ab2 (patch)
treeeccb1576b1380f17d880133f1fbf92df8456295d /Lib/test/test_sqlite.py
parent5ef9d9fdb93cd5bd5179d8ce63c28248a4614d44 (diff)
downloadcpython-3e99c0ad649de0393d9a8af17f34d9d1f55f4ab2.zip
cpython-3e99c0ad649de0393d9a8af17f34d9d1f55f4ab2.tar.gz
cpython-3e99c0ad649de0393d9a8af17f34d9d1f55f4ab2.tar.bz2
Updated the sqlite3 module to the external pysqlite 2.2.2 version.
Diffstat (limited to 'Lib/test/test_sqlite.py')
-rw-r--r--Lib/test/test_sqlite.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_sqlite.py b/Lib/test/test_sqlite.py
index 1b1d0e5..f033772 100644
--- a/Lib/test/test_sqlite.py
+++ b/Lib/test/test_sqlite.py
@@ -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()