1 | """Testing environment and utilities. |
---|
2 | |
---|
3 | This package contains base classes and routines used by |
---|
4 | the unit tests. Tests are based on Nose and bootstrapped |
---|
5 | by noseplugin.NoseSQLAlchemy. |
---|
6 | |
---|
7 | """ |
---|
8 | |
---|
9 | from sqlalchemy.test import testing, engines, requires, profiling, pickleable, config |
---|
10 | from sqlalchemy.test.schema import Column, Table |
---|
11 | from sqlalchemy.test.testing import \ |
---|
12 | AssertsCompiledSQL, \ |
---|
13 | AssertsExecutionResults, \ |
---|
14 | ComparesTables, \ |
---|
15 | TestBase, \ |
---|
16 | rowset |
---|
17 | |
---|
18 | |
---|
19 | __all__ = ('testing', |
---|
20 | 'Column', 'Table', |
---|
21 | 'rowset', |
---|
22 | 'TestBase', 'AssertsExecutionResults', |
---|
23 | 'AssertsCompiledSQL', 'ComparesTables', |
---|
24 | 'engines', 'profiling', 'pickleable') |
---|
25 | |
---|
26 | |
---|