blob: ec6f6345924f13438b3e25c8656c0a083004ea8c [file] [log] [blame]
Benjamin Petersone549ead2009-03-28 21:42:05 +00001import unittest
R. David Murraya21e4ca2009-03-31 23:16:50 +00002from test.support import run_unittest, import_module
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003
R. David Murraya21e4ca2009-03-31 23:16:50 +00004# Skip test if _sqlite3 module not installed
5import_module('_sqlite3')
6
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007from sqlite3.test import (dbapi, types, userfunctions,
Christian Heimesbbe741d2008-03-28 10:53:29 +00008 factory, transactions, hooks, regression,
9 dump)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010
11def test_main():
12 run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
Christian Heimesbbe741d2008-03-28 10:53:29 +000013 factory.suite(), transactions.suite(),
14 hooks.suite(), regression.suite(), dump.suite())
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000015
16if __name__ == "__main__":
17 test_main()