__init__.py
来自「SQLAlchemy. 经典的Python ORM框架。学习必看。」· Python 代码 · 共 24 行
PY
24 行
"""Enhance unittest and instrument SQLAlchemy classes for testing.Load after sqlalchemy imports to use instrumented stand-ins like Table."""import testlib.configfrom testlib.schema import Table, Columnfrom testlib.orm import mapperimport testlib.testing as testingfrom testlib.testing import rowsetfrom testlib.testing import TestBase, AssertsExecutionResults, ORMTest, AssertsCompiledSQL, ComparesTablesimport testlib.profiling as profilingimport testlib.engines as enginesfrom testlib.compat import set, frozenset, sorted, _function_named__all__ = ('testing', 'mapper', 'Table', 'Column', 'rowset', 'TestBase', 'AssertsExecutionResults', 'ORMTest', 'AssertsCompiledSQL', 'ComparesTables', 'profiling', 'engines', 'set', 'frozenset', 'sorted', '_function_named')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?