blob: d82b0a99686287340b2808403704b05e45c2a175 [file] [log] [blame]
R. David Murraya21e4ca2009-03-31 23:16:50 +00001from test.support import run_unittest, import_module
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002
R. David Murraya21e4ca2009-03-31 23:16:50 +00003# Skip test if _sqlite3 module not installed
4import_module('_sqlite3')
5
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006from sqlite3.test import (dbapi, types, userfunctions,
Christian Heimesbbe741d2008-03-28 10:53:29 +00007 factory, transactions, hooks, regression,
8 dump)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009
10def test_main():
11 run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
Christian Heimesbbe741d2008-03-28 10:53:29 +000012 factory.suite(), transactions.suite(),
13 hooks.suite(), regression.suite(), dump.suite())
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000014
15if __name__ == "__main__":
16 test_main()