mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-09 18:30:39 -04:00
68a350d462
- move testing.TestBase to test.lib.fixtures - massive search and replace
25 lines
684 B
Python
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')
|
|
|
|
|