source: titan/mediathek/localhoster/lib/python2.7/test/test_sqlite.py @ 40094

Last change on this file since 40094 was 40094, checked in by obi, 7 years ago

tithek add yoztube-dl support

File size: 583 bytes
Line 
1from test.test_support import run_unittest, import_module
2
3# Skip test if _sqlite3 module was not built.
4import_module('_sqlite3')
5
6from sqlite3.test import (dbapi, types, userfunctions, py25tests,
7                                factory, transactions, hooks, regression,
8                                dump)
9
10def test_main():
11    run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
12                 py25tests.suite(), factory.suite(), transactions.suite(),
13                 hooks.suite(), regression.suite(), dump.suite())
14
15if __name__ == "__main__":
16    test_main()
Note: See TracBrowser for help on using the repository browser.