diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-03-28 08:32:09 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-03-28 08:32:09 (GMT) |
commit | b9803421d231fc66489eafb45f6ae440010cacfc (patch) | |
tree | c934cab8654aef8bc092f4a70d3fddfc9e34fa51 /Lib | |
parent | 621cd262539cd6bea59bb1c3cfc35b9d37a26d98 (diff) | |
download | cpython-b9803421d231fc66489eafb45f6ae440010cacfc.zip cpython-b9803421d231fc66489eafb45f6ae440010cacfc.tar.gz cpython-b9803421d231fc66489eafb45f6ae440010cacfc.tar.bz2 |
Accept patch issue2426 by Paul Kippes (kippesp).
Adds sqlite3.Connection.iterdump to allow dumping of databases.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sqlite.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_sqlite.py b/Lib/test/test_sqlite.py index 3566f31..d63bb1d 100644 --- a/Lib/test/test_sqlite.py +++ b/Lib/test/test_sqlite.py @@ -5,12 +5,13 @@ try: except ImportError: raise TestSkipped('no sqlite available') from sqlite3.test import (dbapi, types, userfunctions, py25tests, - factory, transactions, hooks, regression) + factory, transactions, hooks, regression, + dump) def test_main(): run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(), py25tests.suite(), factory.suite(), transactions.suite(), - hooks.suite(), regression.suite()) + hooks.suite(), regression.suite(), dump.suite()) if __name__ == "__main__": test_main() |