mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-27 02:52:53 -04:00
4b0c6aff01
Promoted the 'utf8 bind' logic for tests needing utf8 connections into testlib Added a pause before issuing DROPs to rid the testing db of clutter
17 lines
458 B
Python
17 lines
458 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
|
|
import testlib.engines
|
|
|
|
|
|
__all__ = ('testing',
|
|
'Table', 'Column',
|
|
'PersistTest', 'AssertMixin', 'ORMTest')
|