blob: 1b1d0e5828ed8baf09cab6ec569d8f13f1d817fb [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001from test.test_support import run_unittest, TestSkipped
2import unittest
3
4try:
5 import _sqlite3
6except ImportError:
7 raise TestSkipped('no sqlite available')
8from sqlite3.test import (dbapi, types, userfunctions,
9 factory, transactions)
10
11def test_main():
12 run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
13 factory.suite(), transactions.suite())
14
15if __name__ == "__main__":
16 test_main()