mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-30 12:34:52 -04:00
12 lines
330 B
Python
12 lines
330 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
|
|
import testlib.profiling
|
|
|