]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_sqlite.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_sqlite.py
CommitLineData
4710c53d 1from test.test_support import run_unittest, import_module\r
2\r
3# Skip test if _sqlite3 module was not built.\r
4import_module('_sqlite3')\r
5\r
6from sqlite3.test import (dbapi, types, userfunctions, py25tests,\r
7 factory, transactions, hooks, regression,\r
8 dump)\r
9\r
10def test_main():\r
11 run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),\r
12 py25tests.suite(), factory.suite(), transactions.suite(),\r
13 hooks.suite(), regression.suite(), dump.suite())\r
14\r
15if __name__ == "__main__":\r
16 test_main()\r