mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-31 12:58:45 -04:00
28 lines
708 B
Python
28 lines
708 B
Python
"""Testing environment and utilities.
|
|
|
|
This package contains base classes and routines used by
|
|
the unit tests. Tests are based on Nose and bootstrapped
|
|
by noseplugin.NoseSQLAlchemy.
|
|
|
|
"""
|
|
|
|
from test.bootstrap import config
|
|
from test.lib import testing, engines, requires, profiling, pickleable
|
|
from test.lib.schema import Column, Table
|
|
from test.lib.testing import \
|
|
AssertsCompiledSQL, \
|
|
AssertsExecutionResults, \
|
|
ComparesTables, \
|
|
TestBase, \
|
|
rowset
|
|
|
|
|
|
__all__ = ('testing',
|
|
'Column', 'Table',
|
|
'rowset',
|
|
'TestBase', 'AssertsExecutionResults',
|
|
'AssertsCompiledSQL', 'ComparesTables',
|
|
'engines', 'profiling', 'pickleable')
|
|
|
|
|