blob: b8a9acff7859e3763a2e6dc108de6e0264b3978f [file] [log] [blame]
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001from test.support import run_unittest, TestSkipped
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002
3try:
4 import _sqlite3
5except ImportError:
6 raise TestSkipped('no sqlite available')
7from 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()