mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-13 04:07:20 -04:00
18 lines
551 B
Python
18 lines
551 B
Python
"""Enhance unittest and instrument SQLAlchemy classes for testing.
|
|
|
|
Load after sqlalchemy imports to use instrumented stand-ins like Table.
|
|
"""
|
|
|
|
import testlib.config
|
|
from testlib.schema import Table, Column
|
|
import testlib.testing as testing
|
|
from testlib.testing import PersistTest, AssertMixin, ORMTest, SQLCompileTest
|
|
import testlib.profiling as profiling
|
|
import testlib.engines as engines
|
|
|
|
|
|
__all__ = ('testing',
|
|
'Table', 'Column',
|
|
'PersistTest', 'AssertMixin', 'ORMTest', 'SQLCompileTest',
|
|
'profiling', 'engines')
|