2006-03-31 20:57:31 -04:00
|
|
|
from test.test_support import run_unittest, TestSkipped
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
try:
|
|
|
|
import _sqlite3
|
|
|
|
except ImportError:
|
|
|
|
raise TestSkipped('no sqlite available')
|
|
|
|
from sqlite3.test import (dbapi, types, userfunctions,
|
2006-04-23 12:24:26 -03:00
|
|
|
factory, transactions, hooks, regression)
|
2006-03-31 20:57:31 -04:00
|
|
|
|
|
|
|
def test_main():
|
|
|
|
run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
|
2006-04-23 12:24:26 -03:00
|
|
|
factory.suite(), transactions.suite(), hooks.suite(),
|
|
|
|
regression.suite())
|
2006-03-31 20:57:31 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|