mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-14 12:47:22 -04:00
6d843aeeb2
- Added DDL event hooks, triggers callables before and after create / drop.
32 lines
742 B
Python
32 lines
742 B
Python
import testenv; testenv.configure_for_tests()
|
|
import unittest
|
|
|
|
|
|
def suite():
|
|
modules_to_test = (
|
|
# connectivity, execution
|
|
'engine.parseconnect',
|
|
'engine.pool',
|
|
'engine.bind',
|
|
'engine.reconnect',
|
|
'engine.execute',
|
|
'engine.metadata',
|
|
'engine.transaction',
|
|
|
|
# schema/tables
|
|
'engine.reflection',
|
|
'engine.ddlevents',
|
|
|
|
)
|
|
alltests = unittest.TestSuite()
|
|
for name in modules_to_test:
|
|
mod = __import__(name)
|
|
for token in name.split('.')[1:]:
|
|
mod = getattr(mod, token)
|
|
alltests.addTest(unittest.findTestCases(mod, suiteClass=None))
|
|
return alltests
|
|
|
|
|
|
if __name__ == '__main__':
|
|
testenv.main(suite())
|