root/galaxy-central/eggs/SQLAlchemy-0.5.6_dev_r6498-py2.6.egg/sqlalchemy/test/__init__.py @ 3

リビジョン 3, 0.7 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1"""Testing environment and utilities.
2
3This package contains base classes and routines used by
4the unit tests.   Tests are based on Nose and bootstrapped
5by noseplugin.NoseSQLAlchemy.
6
7"""
8
9from sqlalchemy.test import testing, engines, requires, profiling, pickleable, config
10from sqlalchemy.test.schema import Column, Table
11from 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
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。