⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 __init__.py

📁 SQLAlchemy. 经典的Python ORM框架。学习必看。
💻 PY
字号:
"""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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -