Files
sqlalchemy/test/lib/__init__.py
T
Mike Bayer 68a350d462 - remove test.sql._base, test.engine._base, test.orm._base, move those classes to a new test.lib.fixtures module
- move testing.TestBase to test.lib.fixtures
- massive search and replace
2011-03-27 16:27:27 -04:00

25 lines
684 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, \
fixtures
from test.lib.schema import Column, Table
from test.lib.testing import AssertsCompiledSQL, \
AssertsExecutionResults, ComparesTables, rowset
__all__ = ('testing',
'Column', 'Table',
'rowset','fixtures',
'AssertsExecutionResults',
'AssertsCompiledSQL', 'ComparesTables',
'engines', 'profiling', 'pickleable')